Files
2023-08-18 17:32:18 +08:00

21 lines
315 B
JavaScript

const props = {
color: {
type: String,
value: '',
},
name: {
type: String,
value: '',
required: true,
},
size: {
type: String,
value: '',
},
prefix: {
type: String,
value: undefined,
},
};
export default props;