Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 1x 1x 1x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 5x 5x 5x 12x 12x 1x 1x | 'use client';
import * as React from 'react';
import { Check } from 'lucide-react';
import { cn } from '@/lib/utils';
export interface CheckboxProps extends React.InputHTMLAttributes<HTMLInputElement> {
checked?: boolean;
onCheckedChange?: (checked: boolean) => void;
}
const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
({ className, checked, onCheckedChange, ...props }, _ref) => {
return (
<button
type="button"
role="checkbox"
aria-checked={checked}
data-state={checked ? 'checked' : 'unchecked'}
className={cn(
'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',
checked && 'bg-primary text-primary-foreground',
className
)}
onClick={() => onCheckedChange?.(!checked)}
{...(props as React.ButtonHTMLAttributes<HTMLButtonElement>)}
>
{checked && (
<span className="flex items-center justify-center text-current">
<Check className="h-3 w-3" />
</span>
)}
</button>
);
}
);
Checkbox.displayName = 'Checkbox';
export { Checkbox };
|