28 lines
567 B
TypeScript
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;
|
|
};
|
|
}
|