@aplus-frontend/ui
Version:
27 lines (26 loc) • 483 B
JavaScript
import { defineComponent as t, createVNode as e } from "vue";
import { Divider as d } from "@aplus-frontend/antdv";
const r = /* @__PURE__ */ t({
props: {
padding: {
type: [String, Number],
default: void 0
}
},
setup(n) {
return () => {
e("div", {
style: {
padding: n.padding || "0 24px"
}
}, [e(d, {
style: {
margin: 0
}
}, null)]);
};
}
});
export {
r as ApSkeletonLine
};