@mui/base
Version:
A library of headless ('unstyled') React UI components and low-level hooks.
13 lines (12 loc) • 517 B
TypeScript
export interface TabsListClasses {
/** 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 TabsListClassKey = keyof TabsListClasses;
export declare function getTabsListUtilityClass(slot: string): string;
declare const tabsListClasses: TabsListClasses;
export default tabsListClasses;