t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
30 lines (29 loc) • 394 B
JavaScript
const e = {
size: {
type: [String, Number],
default: () => ""
},
round: {
type: Boolean,
default: () => !1
},
disabled: {
type: Boolean,
default: () => !1
},
color: {
type: String,
default: () => ""
},
icon: {
type: Object,
default: () => null
},
click: {
type: Function,
default: () => null
}
};
export {
e as Props
};