checkbox.tsx raw

   1  import * as React from 'react'
   2  import * as CheckboxPrimitive from '@radix-ui/react-checkbox'
   3  import { Check } from 'lucide-react'
   4  
   5  import { cn } from '@/lib/utils'
   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-md border border-accent focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:border-primary data-[state=checked]:text-primary-foreground transition-all duration-200 hover:border-primary/50',
  15        className
  16      )}
  17      {...props}
  18    >
  19      <CheckboxPrimitive.Indicator className={cn('flex items-center justify-center text-current')}>
  20        <Check className="h-4 w-4" />
  21      </CheckboxPrimitive.Indicator>
  22    </CheckboxPrimitive.Root>
  23  ))
  24  Checkbox.displayName = CheckboxPrimitive.Root.displayName
  25  
  26  export { Checkbox }
  27