1 | export 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 | }
|
15 | export type SpeedDialIconClassKey = keyof SpeedDialIconClasses;
|
16 | export declare function getSpeedDialIconUtilityClass(slot: string): string;
|
17 | declare const speedDialIconClasses: SpeedDialIconClasses;
|
18 | export default speedDialIconClasses;
|