UNPKG

1.05 kBTypeScriptView Raw
1export 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}
17export type SpeedDialActionClassKey = keyof SpeedDialActionClasses;
18export declare function getSpeedDialActionUtilityClass(slot: string): string;
19declare const speedDialActionClasses: SpeedDialActionClasses;
20export default speedDialActionClasses;