Components
Loading preview...
Here is Checkbox component
@SubframeApp
npx shadcn@latest add https://21st.dev/r/SubframeApp/checkbox-1import Component from "@/components/ui/checkbox-1";
export default function CheckboxBasic() {
return (
<div className="flex flex-col gap-3 rounded-lg p-4 ring-1 bg-white text-gray-900 ring-gray-200 dark:bg-gray-800 dark:text-gray-100 dark:ring-gray-700">
<Component defaultChecked label="I agree to the Terms" />
<Component label="Subscribe to newsletter" />
<Component label="Enable weekly summary" />
</div>
);
}