adverich-kun-ui
Version:
Una librería de componentes Vue.js con Tailwind CSS
28 lines (27 loc) • 564 B
JavaScript
const e = {
gap: {
type: [String, Number],
default: "gap-2"
},
justify: {
type: String,
default: "justify-start",
validator: (t) => ["justify-start", "justify-end", "justify-center", "justify-between", "justify-around"].includes(t)
},
align: {
type: String,
default: "items-center",
validator: (t) => ["items-start", "items-end", "items-center", "items-stretch"].includes(t)
},
wrap: {
type: Boolean,
default: !1
},
dense: {
type: Boolean,
default: !1
}
};
export {
e as kunCardActionsProps
};