learning_ai_common_plat/dashboards/admin-web/src/components/ui/checkbox.tsx
Saravana Kumar 7465b21d91
Some checks failed
Publish @bytelyst/* packages / publish (push) Failing after 13s
CI — Common Platform / Build, Test & Typecheck (push) Successful in 53s
style(admin-web): format dashboard sources
2026-05-30 21:18:09 +00:00

34 lines
1.1 KiB
TypeScript

'use client';
import * as React from 'react';
import { Check } from 'lucide-react';
import { cn } from '@/lib/utils';
export interface CheckboxProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
checked?: boolean;
onCheckedChange?: (checked: boolean) => void;
}
const Checkbox = React.forwardRef<HTMLButtonElement, CheckboxProps>(
({ className, checked, onCheckedChange, ...props }, ref) => (
<button
type="button"
role="checkbox"
aria-checked={checked}
ref={ref}
onClick={() => onCheckedChange?.(!checked)}
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 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground',
className
)}
data-state={checked ? 'checked' : 'unchecked'}
{...props}
>
{checked && <Check className="h-4 w-4" />}
</button>
)
);
Checkbox.displayName = 'Checkbox';
export { Checkbox };