Files
quinn-wx/components/fab/type.d.ts
2022-11-24 17:07:38 +08:00

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;
};
}