UNPKG

@project-jade-garden/bits-ui

Version:
26 lines (25 loc) 975 B
import { SVATraits } from 'jade-garden'; /** * **Accordion** * @description Organizes content into collapsible sections, allowing users to focus on one or more sections at a time. * @see [source](https://www.bits-ui.com/docs/components/accordion#api-reference) */ export declare const slots: readonly ["root", "item", "header", "trigger", "content"]; /** * **Accordion** * @description Organizes content into collapsible sections, allowing users to focus on one or more sections at a time. * @see [source](https://www.bits-ui.com/docs/components/accordion#api-reference) */ export type Slots = (typeof slots)[number]; /** * **Accordion** * @description Organizes content into collapsible sections, allowing users to focus on one or more sections at a time. * @see [source](https://www.bits-ui.com/docs/components/accordion#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; item: {}; header: {}; trigger: {}; content: {}; }>;