33 lines
503 B
JavaScript
33 lines
503 B
JavaScript
const props = {
|
|
alt: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
badgeProps: {
|
|
type: Object,
|
|
},
|
|
externalClasses: {
|
|
type: Array,
|
|
},
|
|
hideOnLoadFailed: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
icon: {
|
|
type: String,
|
|
},
|
|
image: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
shape: {
|
|
type: String,
|
|
value: 'circle',
|
|
},
|
|
size: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
};
|
|
export default props;
|