@loke/design-system
Version:
A design system with individually importable components
10 lines (9 loc) • 513 B
text/typescript
import * as CheckboxPrimitive from "@loke/ui/checkbox";
/**
* Checkbox component for selecting options
*
* The Checkbox component provides a customizable and accessible way to allow users to make binary choices.
* It combines a hidden native checkbox input with a styled visual representation, ensuring both aesthetics and functionality.
*/
declare function Checkbox({ className, ...props }: React.ComponentProps<typeof CheckboxPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
export { Checkbox };