t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
31 lines (30 loc) • 457 B
JavaScript
const a = {
rounded: {
type: Boolean,
default: () => !1
},
animated: {
type: Boolean,
default: () => !1
},
circled: {
type: Boolean,
default: () => !1
},
rows: {
type: Number,
default: () => 1
},
loading: {
type: Boolean,
default: () => !1
},
size: {
type: String,
default: () => "default",
validator: (e) => ["default", "small", "large"].includes(e)
}
};
export {
a as Props
};