import { defineComponent, createBlock, openBlock, unref, withCtx, renderSlot } from 'vue'; import { u as useForwardExpose } from '../shared/useForwardExpose.js'; import { P as Primitive } from '../Primitive/Primitive.js'; import { i as injectPopoverRootContext } from './PopoverRoot.js'; const _sfc_main = /* @__PURE__ */ defineComponent({ __name: "PopoverClose", props: { asChild: { type: Boolean }, as: { default: "button" } }, setup(__props) { const props = __props; useForwardExpose(); const rootContext = injectPopoverRootContext(); return (_ctx, _cache) => { return openBlock(), createBlock(unref(Primitive), { type: _ctx.as === "button" ? "button" : void 0, as: _ctx.as, "as-child": props.asChild, onClick: _cache[0] || (_cache[0] = ($event) => unref(rootContext).onOpenChange(false)) }, { default: withCtx(() => [ renderSlot(_ctx.$slots, "default") ]), _: 3 }, 8, ["type", "as", "as-child"]); }; } }); export { _sfc_main as _ }; //# sourceMappingURL=PopoverClose.js.map