Components
Loading preview...
A Checkbox allows users to select multiple items from a list of individual items, or to mark one individual item as selected. Checkboxes can be built with the <input> HTML element, but this can be difficult to style. Checkbox helps achieve accessible checkboxes that can be styled as needed.
@jolbol1
npx shadcn@latest add https://21st.dev/r/jolbol1/checkboximport { Checkbox } from "@/components/ui/checkbox"
export function CheckboxDemo() {
return <Checkbox>Unsubscribe</Checkbox>
}