UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

12 lines 535 B
export interface TabScrollButtonClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element if `orientation="vertical"`. */ vertical: string; /** State class applied to the root element if `disabled={true}`. */ disabled: string; } export type TabScrollButtonClassKey = keyof TabScrollButtonClasses; export declare function getTabScrollButtonUtilityClass(slot: string): string; declare const tabScrollButtonClasses: TabScrollButtonClasses; export default tabScrollButtonClasses;