1 | export interface SpeedDialActionClasses {
|
2 | /** Styles applied to the Fab component. */
|
3 | fab: string;
|
4 | /** Styles applied to the Fab component if `open={false}`. */
|
5 | fabClosed: string;
|
6 | /** Styles applied to the root element if `tooltipOpen={true}`. */
|
7 | staticTooltip: string;
|
8 | /** Styles applied to the root element if `tooltipOpen={true}` and `open={false}`. */
|
9 | staticTooltipClosed: string;
|
10 | /** Styles applied to the static tooltip label if `tooltipOpen={true}`. */
|
11 | staticTooltipLabel: string;
|
12 | /** Styles applied to the root element if `tooltipOpen={true}` and `tooltipPlacement="left"`` */
|
13 | tooltipPlacementLeft: string;
|
14 | /** Styles applied to the root element if `tooltipOpen={true}` and `tooltipPlacement="right"`` */
|
15 | tooltipPlacementRight: string;
|
16 | }
|
17 | export type SpeedDialActionClassKey = keyof SpeedDialActionClasses;
|
18 | export declare function getSpeedDialActionUtilityClass(slot: string): string;
|
19 | declare const speedDialActionClasses: SpeedDialActionClasses;
|
20 | export default speedDialActionClasses;
|