This commit is contained in:
Ishaan Dey
2024-04-08 23:40:42 -04:00
parent f32d84d2c2
commit dce7166a91
4 changed files with 82 additions and 34 deletions

31
components/ui/tab.tsx Normal file
View File

@ -0,0 +1,31 @@
"use client"
import { X } from "lucide-react"
import { Button } from "./button"
export default function Tab({
children,
onClick,
onClose,
}: {
children: React.ReactNode
onClick?: () => void
onClose?: () => void
}) {
return (
<Button
onClick={onClick ?? undefined}
size="sm"
variant="secondary"
className="group select-none"
>
{children}
<div
onClick={onClose ?? undefined}
className=" p-0.5 h-5 w-5 ml-0.5 flex items-center justify-center translate-x-1 transition-colors bg-transparent hover:bg-muted-foreground/25 rounded-sm"
>
<X className="w-3 h-3" />
</div>
</Button>
)
}