mirror of
https://github.com/Noooste/garage-ui.git
synced 2026-08-13 06:56:54 +00:00
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
import * as React from 'react';
|
|
import { cn } from '@/lib/utils';
|
|
|
|
export interface CheckboxProps
|
|
extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
onCheckedChange?: (checked: boolean) => void;
|
|
}
|
|
|
|
const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
|
|
({ className, onCheckedChange, onChange, ...props }, ref) => {
|
|
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
if (onCheckedChange) {
|
|
onCheckedChange(e.target.checked);
|
|
}
|
|
if (onChange) {
|
|
onChange(e);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<input
|
|
type="checkbox"
|
|
className={cn(
|
|
'h-4 w-4 shrink-0 border border-primary rounded cursor-pointer 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 accent-primary',
|
|
className
|
|
)}
|
|
ref={ref}
|
|
onChange={handleChange}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
);
|
|
Checkbox.displayName = 'Checkbox';
|
|
|
|
export { Checkbox };
|