|
1 | | -import * as React from "react" |
2 | | -import * as CheckboxPrimitive from "@radix-ui/react-checkbox" |
3 | | -import { Check } from "lucide-react" |
| 1 | +import * as CheckboxPrimitive from '@radix-ui/react-checkbox'; |
| 2 | +import { Check } from 'lucide-react'; |
| 3 | +import * as React from 'react'; |
4 | 4 |
|
5 | | -import { cn } from "@/lib/utils" |
| 5 | +import { cn } from '@/lib/utils'; |
6 | 6 |
|
7 | | -const Checkbox = React.forwardRef< |
8 | | - React.ElementRef<typeof CheckboxPrimitive.Root>, |
9 | | - React.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root> |
10 | | ->(({ className, ...props }, ref) => ( |
11 | | - <CheckboxPrimitive.Root |
12 | | - ref={ref} |
13 | | - className={cn( |
14 | | - "peer h-4 w-4 shrink-0 rounded-sm border border-primary ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground", |
15 | | - className |
16 | | - )} |
17 | | - {...props} |
18 | | - > |
19 | | - <CheckboxPrimitive.Indicator |
20 | | - className={cn("flex items-center justify-center text-current")} |
21 | | - > |
22 | | - <Check className="h-4 w-4" /> |
23 | | - </CheckboxPrimitive.Indicator> |
24 | | - </CheckboxPrimitive.Root> |
25 | | -)) |
26 | | -Checkbox.displayName = CheckboxPrimitive.Root.displayName |
| 7 | +const Checkbox = React.forwardRef<React.ElementRef<typeof CheckboxPrimitive.Root>, React.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>>( |
| 8 | + ({ className, ...props }, ref) => ( |
| 9 | + <CheckboxPrimitive.Root |
| 10 | + ref={ref} |
| 11 | + className={cn( |
| 12 | + 'peer h-4 w-4 shrink-0 rounded-sm border border-primary ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground', |
| 13 | + className, |
| 14 | + )} |
| 15 | + {...props} |
| 16 | + > |
| 17 | + <CheckboxPrimitive.Indicator className={cn('flex items-center justify-center text-current')}> |
| 18 | + <Check className="h-4 w-4" /> |
| 19 | + </CheckboxPrimitive.Indicator> |
| 20 | + </CheckboxPrimitive.Root> |
| 21 | + ), |
| 22 | +); |
| 23 | +Checkbox.displayName = CheckboxPrimitive.Root.displayName; |
27 | 24 |
|
28 | | -export { Checkbox } |
| 25 | +export { Checkbox }; |
0 commit comments