1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| import { cva } from 'class-variance-authority';
|
| export const buttonVariants = cva(
| 'inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50',
| {
| defaultVariants: {
| size: 'default',
| variant: 'default',
| },
| variants: {
| size: {
| default: 'h-9 px-4 py-2',
| icon: 'h-8 w-8 rounded-sm px-1 text-lg',
| lg: 'h-10 rounded-md px-4',
| sm: 'h-8 rounded-md px-2 text-xs',
| xs: 'h-8 w-8 rounded-sm px-1 text-xs',
| },
| variant: {
| default:
| 'bg-primary text-primary-foreground shadow hover:bg-primary/90',
| destructive:
| 'bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive-hover',
| ghost: 'hover:bg-accent hover:text-accent-foreground',
| heavy: 'hover:bg-heavy hover:text-heavy-foreground',
| icon: 'hover:bg-accent hover:text-accent-foreground text-foreground/80',
| link: 'text-primary underline-offset-4 hover:underline',
| outline:
| 'border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground',
| secondary:
| 'bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80',
| },
| },
| },
| );
|
|