import { defineComponent, mergeProps, useSSRContext } from 'vue'; import { ssrRenderAttrs, ssrInterpolate, ssrRenderSlot } from 'vue/server-renderer'; const _sfc_main = /* @__PURE__ */ defineComponent({ __name: "Divider", __ssrInlineRender: true, props: { "asChild": { type: Boolean }, "title": null }, setup(__props) { return (_ctx, _push, _parent, _attrs) => { _push(`
`); if (__props.title) { _push(`
${ssrInterpolate(__props.title)}
`); } else { _push(``); } if (__props.asChild) { ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); } else { _push(``); } _push(``); }; } }); const _sfc_setup = _sfc_main.setup; _sfc_main.setup = (props, ctx) => { const ssrContext = useSSRContext(); (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/Divider.vue"); return _sfc_setup ? _sfc_setup(props, ctx) : void 0; }; export { _sfc_main as default }; //# sourceMappingURL=Divider-d0e5605d.mjs.map