You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
957 B
TypeScript
23 lines
957 B
TypeScript
export interface SpeedDialClasses {
|
|
/** Styles applied to the root element. */
|
|
root: string;
|
|
/** Styles applied to the Fab component. */
|
|
fab: string;
|
|
/** Styles applied to the root element if direction="up" */
|
|
directionUp: string;
|
|
/** Styles applied to the root element if direction="down" */
|
|
directionDown: string;
|
|
/** Styles applied to the root element if direction="left" */
|
|
directionLeft: string;
|
|
/** Styles applied to the root element if direction="right" */
|
|
directionRight: string;
|
|
/** Styles applied to the actions (`children` wrapper) element. */
|
|
actions: string;
|
|
/** Styles applied to the actions (`children` wrapper) element if `open={false}`. */
|
|
actionsClosed: string;
|
|
}
|
|
export type SpeedDialClassKey = keyof SpeedDialClasses;
|
|
export declare function getSpeedDialUtilityClass(slot: string): string;
|
|
declare const speedDialClasses: SpeedDialClasses;
|
|
export default speedDialClasses;
|