You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
459 B
30 lines
459 B
const props = {
|
|
align: {
|
|
type: String,
|
|
value: 'center',
|
|
},
|
|
border: {
|
|
type: null,
|
|
value: false,
|
|
},
|
|
column: {
|
|
type: Number,
|
|
value: 4,
|
|
},
|
|
externalClasses: {
|
|
type: Array,
|
|
},
|
|
gutter: {
|
|
type: Number,
|
|
},
|
|
hover: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
theme: {
|
|
type: String,
|
|
value: 'default',
|
|
},
|
|
};
|
|
export default props;
|