Components
A customizable checkbox component with smooth animations and multiple states.
Loading preview...
import { Checkbox } from "@/components/ui/checkbox";
export default function DemoOne() {
return (
<>
<Checkbox className="font-medium" label="Default checkbox" />
</>
);
}