UNPKG

679 BTypeScriptView Raw
1export interface BottomNavigationActionClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** State class applied to the root element if selected. */
5 selected: string;
6 /** State class applied to the root element if `showLabel={false}` and not selected. */
7 iconOnly: string;
8 /** Styles applied to the label's span element. */
9 label: string;
10}
11export type BottomNavigationActionClassKey = keyof BottomNavigationActionClasses;
12export declare function getBottomNavigationActionUtilityClass(slot: string): string;
13declare const bottomNavigationActionClasses: BottomNavigationActionClasses;
14export default bottomNavigationActionClasses;