21 lines
315 B
JavaScript
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;
|