|
1 | | -import * as React from "react" |
2 | | -import { Slot } from "@radix-ui/react-slot" |
3 | | -import { cva, type VariantProps } from "class-variance-authority" |
| 1 | +import * as React from 'react'; |
| 2 | +import { Slot } from '@radix-ui/react-slot'; |
| 3 | +import { cva, type VariantProps } from 'class-variance-authority'; |
4 | 4 |
|
5 | | -import { cn } from "@/lib/utils" |
| 5 | +import { cn } from '@/lib/utils'; |
6 | 6 |
|
7 | 7 | const buttonVariants = cva( |
8 | | - "inline-flex items-center justify-center gap-2 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:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", |
| 8 | + 'inline-flex items-center justify-center gap-2 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:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0', |
9 | 9 | { |
10 | 10 | variants: { |
11 | 11 | variant: { |
12 | | - default: |
13 | | - "bg-primary text-primary-foreground shadow hover:bg-primary/90", |
14 | | - destructive: |
15 | | - "bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90", |
16 | | - outline: |
17 | | - "border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground", |
18 | | - secondary: |
19 | | - "bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80", |
20 | | - ghost: "hover:bg-accent hover:text-accent-foreground", |
21 | | - link: "text-primary underline-offset-4 hover:underline", |
| 12 | + default: 'bg-primary text-primary-foreground shadow hover:bg-primary/90', |
| 13 | + destructive: 'bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90', |
| 14 | + outline: 'border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground', |
| 15 | + secondary: 'bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80', |
| 16 | + ghost: 'hover:bg-accent hover:text-accent-foreground', |
| 17 | + link: 'text-primary underline-offset-4 hover:underline', |
22 | 18 | }, |
23 | 19 | size: { |
24 | | - default: "h-9 px-4 py-2", |
25 | | - sm: "h-8 rounded-md px-3 text-xs", |
26 | | - lg: "h-10 rounded-md px-8", |
27 | | - icon: "h-9 w-9", |
| 20 | + default: 'h-9 px-4 py-2', |
| 21 | + sm: 'h-8 rounded-md px-3 text-xs', |
| 22 | + lg: 'h-10 rounded-md px-8', |
| 23 | + icon: 'h-9 w-9', |
28 | 24 | }, |
29 | 25 | }, |
30 | 26 | defaultVariants: { |
31 | | - variant: "default", |
32 | | - size: "default", |
| 27 | + variant: 'default', |
| 28 | + size: 'default', |
33 | 29 | }, |
34 | | - } |
35 | | -) |
| 30 | + }, |
| 31 | +); |
36 | 32 |
|
37 | 33 | export interface ButtonProps |
38 | 34 | extends React.ButtonHTMLAttributes<HTMLButtonElement>, |
39 | 35 | VariantProps<typeof buttonVariants> { |
40 | | - asChild?: boolean |
| 36 | + asChild?: boolean; |
41 | 37 | } |
42 | 38 |
|
43 | 39 | const Button = React.forwardRef<HTMLButtonElement, ButtonProps>( |
44 | 40 | ({ className, variant, size, asChild = false, ...props }, ref) => { |
45 | | - const Comp = asChild ? Slot : "button" |
| 41 | + const Comp = asChild ? Slot : 'button'; |
46 | 42 | return ( |
47 | 43 | <Comp |
48 | 44 | className={cn(buttonVariants({ variant, size, className }))} |
49 | 45 | ref={ref} |
50 | 46 | {...props} |
51 | 47 | /> |
52 | | - ) |
53 | | - } |
54 | | -) |
55 | | -Button.displayName = "Button" |
| 48 | + ); |
| 49 | + }, |
| 50 | +); |
| 51 | +Button.displayName = 'Button'; |
56 | 52 |
|
57 | | -export { Button, buttonVariants } |
| 53 | +export { Button, buttonVariants }; |
0 commit comments