Components
Loading preview...
A customizable checkbox component with smooth animations and multiple states.
npx shadcn@latest add https://21st.dev/r/preetsuthar17/checkboximport { Checkbox } from "@/components/ui/checkbox";
export default function DemoOne() {
return (
<>
<Checkbox className="font-medium" label="Default checkbox" />
</>
);
}