2023-03-06 17:57:39 +08:00

44 lines
689 B
JavaScript

const props = {
alt: {
type: String,
value: '',
},
badgeProps: {
type: Object,
},
bordered: {
type: Boolean,
value: false,
},
customStyle: {
type: String,
value: '',
},
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;