Update: ui/button component

This commit is contained in:
John
2024-12-29 18:00:54 -05:00
parent 74a134eec0
commit ed7c28958f

View File

@@ -4,7 +4,7 @@ const buttonVariants = {
base: "inline-flex items-center justify-center whitespace-nowrap rounded-full text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 disabled:pointer-events-none disabled:opacity-50",
variants: {
variant: {
default: "bg-primary text-primary-foreground hover:bg-primary/90 shadow",
default: "bg-primary text-primary-foreground hover:bg-primary/90 rounded-full border shadow-sm",
destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90 shadow-sm",
outline: "border-input bg-background hover:bg-accent hover:text-accent-foreground border shadow-sm",
secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80 rounded-full border variant-glass-secondary shadow-sm",
@@ -28,4 +28,4 @@ export {
Root,
Root as Button,
buttonVariants
};
};