23 lines
377 B
JavaScript
23 lines
377 B
JavaScript
|
Component({
|
||
|
externalClasses: ['i-class'],
|
||
|
|
||
|
properties: {
|
||
|
type: {
|
||
|
type: String,
|
||
|
value: ''
|
||
|
},
|
||
|
custom: {
|
||
|
type: String,
|
||
|
value: ''
|
||
|
},
|
||
|
size: {
|
||
|
type: Number,
|
||
|
value: 14
|
||
|
},
|
||
|
color: {
|
||
|
type: String,
|
||
|
value: ''
|
||
|
}
|
||
|
}
|
||
|
});
|