25 lines
371 B
JavaScript
25 lines
371 B
JavaScript
const props = {
|
|
description: {
|
|
type: String,
|
|
},
|
|
externalClasses: {
|
|
type: Array,
|
|
},
|
|
icon: {
|
|
type: null,
|
|
value: true,
|
|
},
|
|
image: {
|
|
type: String,
|
|
},
|
|
theme: {
|
|
type: String,
|
|
value: 'default',
|
|
},
|
|
title: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
};
|
|
export default props;
|