project init

This commit is contained in:
limqhz
2022-11-10 17:13:00 +08:00
commit 4956ed2f1f
113 changed files with 3617 additions and 0 deletions

27
components/icon/type.d.ts vendored Normal file
View File

@@ -0,0 +1,27 @@
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;
};
}