2025-08-20 04:12:49 -06:00

12 lines
343 B
TypeScript

import { Label } from '@workspace/ui/components/ui/label';
import { Checkbox } from '@/registry/base/checkbox';
export const BaseCheckboxDemo = () => {
return (
<div className="flex items-center space-x-2">
<Checkbox defaultChecked id="terms" />
<Label htmlFor="terms">Accept terms and conditions</Label>
</div>
);
};