2024-11-06 11:13:04 +08:00
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
|
|
|
import { Check } from 'lucide-react';
|
|
|
|
|
import * as React from 'react';
|
|
|
|
|
|
|
|
|
|
import { cn } from '@/lib/utils';
|
|
|
|
|
|
|
|
|
|
const Checkbox = React.forwardRef<
|
|
|
|
|
React.ElementRef<typeof CheckboxPrimitive.Root>,
|
|
|
|
|
React.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>
|
|
|
|
|
>(({ className, ...props }, ref) => (
|
|
|
|
|
<CheckboxPrimitive.Root
|
|
|
|
|
ref={ref}
|
|
|
|
|
className={cn(
|
2026-03-05 20:47:29 +08:00
|
|
|
'peer size-4 shrink-0 rounded-2xs border border-text-disabled outline-0 transition-colors bg-transparent',
|
2025-11-10 10:05:19 +08:00
|
|
|
'hover:border-border-default hover:bg-border-button',
|
|
|
|
|
'focus-visible:border-border-default focus-visible:bg-border-default',
|
|
|
|
|
'disabled:cursor-not-allowed disabled:opacity-50',
|
2025-11-10 19:02:41 +08:00
|
|
|
'data-[state=checked]:text-text-primary data-[state=checked]:border-text-primary',
|
2024-11-06 11:13:04 +08:00
|
|
|
className,
|
|
|
|
|
)}
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
<CheckboxPrimitive.Indicator
|
|
|
|
|
className={cn('flex items-center justify-center text-current')}
|
|
|
|
|
>
|
2025-11-10 10:05:19 +08:00
|
|
|
<Check className="size-3" />
|
2024-11-06 11:13:04 +08:00
|
|
|
</CheckboxPrimitive.Indicator>
|
|
|
|
|
</CheckboxPrimitive.Root>
|
|
|
|
|
));
|
|
|
|
|
Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
|
|
|
|
|
|
|
|
export { Checkbox };
|