@indielayer/ui
Version:
Indielayer UI Components with Tailwind CSS build for Vue 3
21 lines (20 loc) • 499 B
JavaScript
const r = {
classes: {
wrapper: "",
scroller: ({ props: s }) => {
const t = [""];
return s.fullWidth || t.push("!w-fit"), t;
},
list: ({ props: s }) => ["flex min-w-full w-fit items-start"],
step: ({ props: s, data: t }) => {
const e = [""];
return s.grow || e.push("w-[8rem]"), e;
},
label: ({ props: s, data: t }) => [""],
icon: ({ props: s, data: t }) => ["mr-2 mt-0.5"],
content: "mt-2 mb-4"
}
}, c = r;
export {
c as default
};