31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
|
|
import * as React from "react"
|
||
|
|
import * as CheckboxPrimitive from "@radix-ui/react-checkbox"
|
||
|
|
import { CheckIcon } from "lucide-react"
|
||
|
|
|
||
|
|
import { cn } from "@/lib/utils"
|
||
|
|
|
||
|
|
function Checkbox({
|
||
|
|
className,
|
||
|
|
...props
|
||
|
|
}: React.ComponentProps<typeof CheckboxPrimitive.Root>) {
|
||
|
|
return (
|
||
|
|
<CheckboxPrimitive.Root
|
||
|
|
data-slot="checkbox"
|
||
|
|
className={cn(
|
||
|
|
"border-3 border-black bg-white peer pr-0 data-[state=checked]:bg-black data-[state=checked]:text-white data-[state=checked]:border-black focus-visible:shadow-[4px_4px_0px_rgba(0,0,0,1)] transition duration-100 ease-in-out aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive size-4 shrink-0 rounded-[4px] shadow-xs outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50",
|
||
|
|
className
|
||
|
|
)}
|
||
|
|
{...props}
|
||
|
|
>
|
||
|
|
<CheckboxPrimitive.Indicator
|
||
|
|
data-slot="checkbox-indicator"
|
||
|
|
className="flex items-center justify-center text-current transition-none"
|
||
|
|
>
|
||
|
|
<CheckIcon className="size-3.5" />
|
||
|
|
</CheckboxPrimitive.Indicator>
|
||
|
|
</CheckboxPrimitive.Root>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export { Checkbox }
|