28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
import * as React from 'react';
|
|
import { Check } from 'lucide-react';
|
|
import { cn } from '@/lib/utils';
|
|
|
|
export interface CheckboxProps extends React.InputHTMLAttributes<HTMLInputElement> {}
|
|
|
|
const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
|
|
({ className, ...props }, ref) => {
|
|
return (
|
|
<div className="relative inline-flex items-center">
|
|
<input
|
|
type="checkbox"
|
|
className={cn(
|
|
'peer h-4 w-4 shrink-0 rounded-sm border border-input 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 appearance-none checked:bg-accent checked:border-accent',
|
|
className
|
|
)}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
<Check className="absolute left-0 h-4 w-4 text-accent-foreground opacity-0 peer-checked:opacity-100 pointer-events-none" />
|
|
</div>
|
|
);
|
|
}
|
|
);
|
|
Checkbox.displayName = 'Checkbox';
|
|
|
|
export { Checkbox };
|