FrontPastel/node_modules/@mui/base/Tabs/tabsClasses.d.ts

12 lines
468 B
TypeScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
export interface TabsClasses {
/** Class name applied to the root element. */
root: string;
/** Class name applied to the root element if `orientation='horizontal'`. */
horizontal: string;
/** Class name applied to the root element if `orientation='vertical'`. */
vertical: string;
}
export type TabsClassKey = keyof TabsClasses;
export declare function getTabsUtilityClass(slot: string): string;
export declare const tabsClasses: TabsClasses;