20 lines
290 B
JavaScript
20 lines
290 B
JavaScript
|
const props = {
|
||
|
animation: {
|
||
|
type: String,
|
||
|
},
|
||
|
externalClasses: {
|
||
|
type: Array,
|
||
|
},
|
||
|
loading: {
|
||
|
type: Boolean,
|
||
|
},
|
||
|
rowCol: {
|
||
|
type: Array,
|
||
|
},
|
||
|
theme: {
|
||
|
type: String,
|
||
|
value: 'text',
|
||
|
},
|
||
|
};
|
||
|
export default props;
|