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.

33 lines
1.5 KiB
TypeScript

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

export interface TabsClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if `orientation="vertical"`. */
vertical: string;
/** Styles applied to the flex container element. */
flexContainer: string;
/** Styles applied to the flex container element if `orientation="vertical"`. */
flexContainerVertical: string;
/** Styles applied to the flex container element if `centered={true}` & `!variant="scrollable"`. */
centered: string;
/** Styles applied to the tablist element. */
scroller: string;
/** Styles applied to the tablist element if `!variant="scrollable"`. */
fixed: string;
/** Styles applied to the tablist element if `variant="scrollable"` and `orientation="horizontal"`. */
scrollableX: string;
/** Styles applied to the tablist element if `variant="scrollable"` and `orientation="vertical"`. */
scrollableY: string;
/** Styles applied to the tablist element if `variant="scrollable"` and `visibleScrollbar={false}`. */
hideScrollbar: string;
/** Styles applied to the ScrollButtonComponent component. */
scrollButtons: string;
/** Styles applied to the ScrollButtonComponent component if `allowScrollButtonsMobile={true}`. */
scrollButtonsHideMobile: string;
/** Styles applied to the TabIndicator component. */
indicator: string;
}
export type TabsClassKey = keyof TabsClasses;
export declare function getTabsUtilityClass(slot: string): string;
declare const tabsClasses: TabsClasses;
export default tabsClasses;