UNPKG

@mui/base

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

12 lines (11 loc) 492 B
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; export declare const tabsListClasses: TabsListClasses;