ohctechv3/.svn/pristine/ac/aca58c7c8cd3b2d029015c3139049aac64986676.svn-base
2024-10-28 15:03:36 +05:30

14 lines
589 B
Plaintext

export interface MenuButtonClasses {
/** Class name applied to the root element. */
root: string;
/** State class applied to the root element if `active={true}`. */
active: string;
/** State class applied to the root element if `disabled={true}`. */
disabled: string;
/** State class applied to the root element if the associated menu is open. */
expanded: string;
}
export type MenuButtonClassKey = keyof MenuButtonClasses;
export declare function getMenuButtonUtilityClass(slot: string): string;
export declare const menuButtonClasses: MenuButtonClasses;