UNPKG

1.59 kBTypeScriptView Raw
1export interface TabsClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `orientation="vertical"`. */
5 vertical: string;
6 /** Styles applied to the flex container element. */
7 flexContainer: string;
8 /** Styles applied to the flex container element if `orientation="vertical"`. */
9 flexContainerVertical: string;
10 /** Styles applied to the flex container element if `centered={true}` & `!variant="scrollable"`. */
11 centered: string;
12 /** Styles applied to the tablist element. */
13 scroller: string;
14 /** Styles applied to the tablist element if `!variant="scrollable"`. */
15 fixed: string;
16 /** Styles applied to the tablist element if `variant="scrollable"` and `orientation="horizontal"`. */
17 scrollableX: string;
18 /** Styles applied to the tablist element if `variant="scrollable"` and `orientation="vertical"`. */
19 scrollableY: string;
20 /** Styles applied to the tablist element if `variant="scrollable"` and `visibleScrollbar={false}`. */
21 hideScrollbar: string;
22 /** Styles applied to the ScrollButtonComponent component. */
23 scrollButtons: string;
24 /** Styles applied to the ScrollButtonComponent component if `allowScrollButtonsMobile={true}`. */
25 scrollButtonsHideMobile: string;
26 /** Styles applied to the TabIndicator component. */
27 indicator: string;
28}
29export type TabsClassKey = keyof TabsClasses;
30export declare function getTabsUtilityClass(slot: string): string;
31declare const tabsClasses: TabsClasses;
32export default tabsClasses;