UNPKG

@project-jade-garden/bits-ui

Version:
24 lines (23 loc) 839 B
import { SVATraits } from 'jade-garden'; /** * **Checkbox** * @description Allow users to switch between checked, unchecked, and indeterminate states. * @see [source](https://www.bits-ui.com/docs/components/checkbox#api-reference) */ export declare const slots: readonly ["root", "group", "groupLabel"]; /** * **Checkbox** * @description Allow users to switch between checked, unchecked, and indeterminate states. * @see [source](https://www.bits-ui.com/docs/components/checkbox#api-reference) */ export type Slots = (typeof slots)[number]; /** * **Checkbox** * @description Allow users to switch between checked, unchecked, and indeterminate states. * @see [source](https://www.bits-ui.com/docs/components/checkbox#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; group: {}; groupLabel: {}; }>;