feat: styles

This commit is contained in:
2026-04-01 16:03:55 +02:00
parent 0642d0f894
commit a0a5f18128
8 changed files with 198 additions and 101 deletions

View File

@@ -49,6 +49,7 @@ function Button({
return (
<ButtonPrimitive
data-slot="button"
data-variant={variant}
className={cn(buttonVariants({ variant, size, className }))}
{...props}
/>

View File

@@ -31,7 +31,7 @@ function TableBody({ className, ...props }: React.ComponentProps<"tbody">) {
return (
<tbody
data-slot="table-body"
className={cn("[&_tr:last-child]:border-0", className)}
className={cn("", className)}
{...props}
/>
)