You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
428 B
TypeScript
12 lines
428 B
TypeScript
export interface MenuClasses {
|
|
/** Class name applied to the root element. */
|
|
root: string;
|
|
/** Class name applied to the listbox element. */
|
|
listbox: string;
|
|
/** State class applied to the root element if `open={true}`. */
|
|
expanded: string;
|
|
}
|
|
export type MenuClassKey = keyof MenuClasses;
|
|
export declare function getMenuUtilityClass(slot: string): string;
|
|
export declare const menuClasses: MenuClasses;
|