1 | import * as React from 'react';
|
2 | import { SxProps } from '@mui/system';
|
3 | import { Theme } from '../styles';
|
4 | import { InternalStandardProps as StandardProps } from '..';
|
5 | import { SpeedDialIconClasses } from './speedDialIconClasses';
|
6 |
|
7 | export interface SpeedDialIconProps
|
8 | extends StandardProps<React.HTMLAttributes<HTMLSpanElement>, 'children'> {
|
9 | |
10 |
|
11 |
|
12 | classes?: Partial<SpeedDialIconClasses>;
|
13 | |
14 |
|
15 |
|
16 | icon?: React.ReactNode;
|
17 | |
18 |
|
19 |
|
20 | openIcon?: React.ReactNode;
|
21 | |
22 |
|
23 |
|
24 |
|
25 | open?: boolean;
|
26 | |
27 |
|
28 |
|
29 | sx?: SxProps<Theme>;
|
30 | }
|
31 |
|
32 |
|
33 |
|
34 |
|
35 |
|
36 |
|
37 |
|
38 |
|
39 |
|
40 |
|
41 |
|
42 | declare const SpeedDialIcon: ((props: SpeedDialIconProps) => React.JSX.Element) & {
|
43 | muiName: string;
|
44 | };
|
45 |
|
46 | export default SpeedDialIcon;
|
47 |
|
\ | No newline at end of file |