@indielayer/ui
Version:
Indielayer UI Components with Tailwind CSS build for Vue 3
17 lines (16 loc) • 516 B
JavaScript
const t = {
classes: {
wrapper({ props: e }) {
return ["relative w-full h-full overflow-hidden"];
},
slides({ props: e }) {
return ["relative w-full h-full overflow-hidden transition-transform duration-300 ease-in-out"];
},
dots: "absolute flex gap-2 w-full justify-center items-center bottom-10",
dot: "bg-white w-2 h-2 rounded-full transition-all ease-in-out duration-300 opacity-75 cursor-pointer",
dotActive: "!w-8 !opacity-100"
}
}, o = t;
export {
o as default
};