UNPKG

@project-jade-garden/bits-ui

Version:
38 lines (37 loc) 1.31 kB
import { SVATraits } from 'jade-garden'; /** * **Menubar** * @description Organizes and presents a collection of menu options or actions within a horizontal bar. * @see [source](https://www.bits-ui.com/docs/components/menubar#api-reference) */ export declare const slots: readonly ["root", "menu", "content", "contentStatic", "trigger", "sub", "item", "group", "groupHeading", "arrow", "radioItem", "separator", "subContent", "subContentStatic", "subTrigger", "radioGroup", "checkboxItem"]; /** * **Menubar** * @description Organizes and presents a collection of menu options or actions within a horizontal bar. * @see [source](https://www.bits-ui.com/docs/components/menubar#api-reference) */ export type Slots = (typeof slots)[number]; /** * **Menubar** * @description Organizes and presents a collection of menu options or actions within a horizontal bar. * @see [source](https://www.bits-ui.com/docs/components/menubar#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; menu: {}; content: {}; contentStatic: {}; trigger: {}; sub: {}; item: {}; group: {}; groupHeading: {}; arrow: {}; radioItem: {}; separator: {}; subContent: {}; subContentStatic: {}; subTrigger: {}; radioGroup: {}; checkboxItem: {}; }>;