UNPKG

@project-jade-garden/kobalte

Version:
30 lines (29 loc) 1.19 kB
import { SVATraits } from 'jade-garden'; /** * **Radio Group** * @description A set of checkable buttons, known as radio buttons, where no more than one of the buttons can be checked at a time. * @see [source](https://kobalte.dev/docs/core/components/radio-group#anatomy) */ export declare const slots: readonly ["description", "errorMessage", "item", "itemControl", "itemDescription", "itemIndicator", "itemInput", "itemLabel", "label"]; /** * **Radio Group** * @description A set of checkable buttons, known as radio buttons, where no more than one of the buttons can be checked at a time. * @see [source](https://kobalte.dev/docs/core/components/radio-group#anatomy) */ export type Slots = (typeof slots)[number]; /** * **Radio Group** * @description A set of checkable buttons, known as radio buttons, where no more than one of the buttons can be checked at a time. * @see [source](https://kobalte.dev/docs/core/components/radio-group#api-reference) */ export type Traits = SVATraits<Slots, { description: {}; errorMessage: {}; item: {}; itemControl: {}; itemDescription: {}; itemIndicator: {}; itemInput: {}; itemLabel: {}; label: {}; }>;