40 lines
622 B
JavaScript
40 lines
622 B
JavaScript
|
const props = {
|
||
|
alt: {
|
||
|
type: String,
|
||
|
value: '',
|
||
|
},
|
||
|
badgeProps: {
|
||
|
type: Object,
|
||
|
},
|
||
|
bordered: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
externalClasses: {
|
||
|
type: Array,
|
||
|
},
|
||
|
hideOnLoadFailed: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
icon: {
|
||
|
type: null,
|
||
|
},
|
||
|
image: {
|
||
|
type: String,
|
||
|
value: '',
|
||
|
},
|
||
|
imageProps: {
|
||
|
type: Object,
|
||
|
},
|
||
|
shape: {
|
||
|
type: String,
|
||
|
value: 'circle',
|
||
|
},
|
||
|
size: {
|
||
|
type: String,
|
||
|
value: 'medium',
|
||
|
},
|
||
|
};
|
||
|
export default props;
|