UNPKG

805 BTypeScriptView Raw
1export interface SpeedDialIconClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the icon component. */
5 icon: string;
6 /** Styles applied to the icon component if `open={true}`. */
7 iconOpen: string;
8 /** Styles applied to the icon when an `openIcon` is provided and if `open={true}`. */
9 iconWithOpenIconOpen: string;
10 /** Styles applied to the `openIcon` if provided. */
11 openIcon: string;
12 /** Styles applied to the `openIcon` if provided and if `open={true}`. */
13 openIconOpen: string;
14}
15export type SpeedDialIconClassKey = keyof SpeedDialIconClasses;
16export declare function getSpeedDialIconUtilityClass(slot: string): string;
17declare const speedDialIconClasses: SpeedDialIconClasses;
18export default speedDialIconClasses;