Files
quinn-wx/components/icon/type.d.ts
2022-11-10 17:13:00 +08:00

28 lines
567 B
TypeScript

export interface TdIconProps {
customStyle?: {
type: StringConstructor;
value?: string;
required?: boolean;
};
color?: {
type: StringConstructor;
value?: string;
required?: boolean;
};
name: {
type: StringConstructor;
value?: string;
required?: boolean;
};
size?: {
type: StringConstructor;
value?: string;
required?: boolean;
};
prefix?: {
type: StringConstructor;
value?: string;
reuqired?: boolean;
};
}