forked from baron/baron-sso
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import * as React from "react";
|
|
import { cn } from "../../lib/utils";
|
|
|
|
export interface CheckboxProps
|
|
extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange"> {
|
|
onCheckedChange?: (checked: boolean | "indeterminate") => void;
|
|
}
|
|
|
|
const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
|
|
({ className, onCheckedChange, id, name, ...props }, ref) => {
|
|
const fallbackId = React.useId();
|
|
const fieldId = id ?? (name ? undefined : fallbackId);
|
|
|
|
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
onCheckedChange?.(e.target.checked);
|
|
};
|
|
|
|
return (
|
|
<input
|
|
id={fieldId}
|
|
name={name}
|
|
type="checkbox"
|
|
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 accent-primary",
|
|
className,
|
|
)}
|
|
onChange={handleChange}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
);
|
|
},
|
|
);
|
|
Checkbox.displayName = "Checkbox";
|
|
|
|
export { Checkbox };
|