UNPKG

@project-jade-garden/bits-ui

Version:
24 lines (23 loc) 879 B
import { SVATraits } from 'jade-garden'; /** * **Collapsible** * @description Conceals or reveals content sections, enhancing space utilization and organization. * @see [source](https://www.bits-ui.com/docs/components/collapsible#api-reference) */ export declare const slots: readonly ["root", "content", "trigger"]; /** * **Collapsible** * @description Conceals or reveals content sections, enhancing space utilization and organization. * @see [source](https://www.bits-ui.com/docs/components/collapsible#api-reference) */ export type Slots = (typeof slots)[number]; /** * **Collapsible** * @description Conceals or reveals content sections, enhancing space utilization and organization. * @see [source](https://www.bits-ui.com/docs/components/collapsible#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; content: {}; trigger: {}; }>;