@indielayer/ui
Version:
Indielayer UI Components with Tailwind CSS build for Vue 3
12 lines (11 loc) • 774 B
JavaScript
const i = {
classes: {
wrapper: ({ props: e }) => {
const t = ["last:pr-0 px-3"];
return t.push(e.dense ? "py-2" : "py-4"), e.textAlign === "left" ? t.push("text-left") : e.textAlign === "center" ? t.push("text-center") : e.textAlign === "right" ? t.push("text-right") : e.textAlign === "justify" && t.push("text-justify"), e.verticalAlign === "baseline" ? t.push("align-baseline") : e.verticalAlign === "bottom" ? t.push("align-bottom") : e.verticalAlign === "middle" ? t.push("align-middle") : e.verticalAlign === "text-bottom" ? t.push("align-text-bottom") : e.verticalAlign === "text-top" ? t.push("align-text-top") : e.verticalAlign === "top" && t.push("align-top"), e.truncate && t.push("truncate"), t;
}
}
}, l = i;
export {
l as default
};