UNPKG

@project-jade-garden/bits-ui

Version:
23 lines (22 loc) 839 B
import { SVATraits } from 'jade-garden'; /** * **Radio Group** * @description Allows users to select a single option from a list of mutually exclusive choices. * @see [source](https://www.bits-ui.com/docs/components/radio-group#api-reference) */ export declare const slots: readonly ["root", "item"]; /** * **Radio Group** * @description Allows users to select a single option from a list of mutually exclusive choices. * @see [source](https://www.bits-ui.com/docs/components/radio-group#api-reference) */ export type Slots = (typeof slots)[number]; /** * **Radio Group** * @description Allows users to select a single option from a list of mutually exclusive choices. * @see [source](https://www.bits-ui.com/docs/components/radio-group#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; item: {}; }>;