UNPKG

@material-ui/core

Version:

Quickly build beautiful React apps. Material-UI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

15 lines (14 loc) 703 B
export interface BottomNavigationActionClasses { /** Styles applied to the root element. */ root: string; /** Pseudo-class applied to the root element if selected. */ selected: string; /** Pseudo-class applied to the root element if `showLabel={false}` and not selected. */ iconOnly: string; /** Styles applied to the label's span element. */ label: string; } export declare type BottomNavigationActionClassKey = keyof BottomNavigationActionClasses; export declare function getBottomNavigationActionUtilityClass(slot: string): string; declare const bottomNavigationActionClasses: BottomNavigationActionClasses; export default bottomNavigationActionClasses;