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

24
components/icon/props.js Normal file
View File

@@ -0,0 +1,24 @@
const props = {
customStyle: {
type: String,
value: '',
},
color: {
type: String,
value: '',
},
name: {
type: String,
value: '',
required: true,
},
size: {
type: String,
value: undefined,
},
prefix: {
type: String,
value: undefined,
},
};
export default props;