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.

52 lines
799 B

const props = {
align: {
type: String,
value: 'middle',
},
arrow: {
type: Boolean,
value: false,
},
bordered: {
type: Boolean,
value: true,
},
description: {
type: String,
},
externalClasses: {
type: Array,
},
hover: {
type: Boolean,
},
image: {
type: String,
},
jumpType: {
type: String,
value: 'navigateTo',
},
leftIcon: {
type: String,
},
note: {
type: String,
},
required: {
type: Boolean,
value: false,
},
rightIcon: {
type: String,
},
title: {
type: String,
},
url: {
type: String,
value: '',
},
};
export default props;