adverich-kun-ui
Version:
Una librería de componentes Vue.js con Tailwind CSS
40 lines (39 loc) • 715 B
JavaScript
const e = {
title: String,
titleSize: String,
subtitle: String,
prepend: [String, Object, Function],
append: [String, Object, Function],
bgColor: {
type: String,
default: "bg-ransparent"
},
textColor: {
type: String,
default: "text-gray-800 dark:text-gray-200"
},
dense: {
type: Boolean,
default: !1
},
flat: {
type: Boolean,
default: !1
},
rounded: {
type: [Boolean, String],
default: !1,
validator: (t) => typeof t == "boolean" || ["sm", "md", "lg", "xl"].includes(t)
},
height: {
type: [String, Number],
default: "auto"
},
width: {
type: [String, Number],
default: "full"
}
};
export {
e as kunCardTitleProps
};