19 lines
348 B
TypeScript
19 lines
348 B
TypeScript
export interface TdFabProps {
|
|
buttonProps?: {
|
|
type: ObjectConstructor;
|
|
value?: object;
|
|
};
|
|
icon?: {
|
|
type: StringConstructor;
|
|
value?: string;
|
|
};
|
|
style?: {
|
|
type: StringConstructor;
|
|
value?: string;
|
|
};
|
|
text?: {
|
|
type: StringConstructor;
|
|
value?: string;
|
|
};
|
|
}
|