UNPKG

@ark-ui/vue

Version:

A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.

19 lines (16 loc) 454 B
import { defineComponent, renderSlot } from 'vue'; import { ImageCropperProvider } from './use-image-cropper-context.js'; const _sfc_main = /* @__PURE__ */ defineComponent({ __name: "image-cropper-context", props: { value: {} }, setup(__props) { const props = __props; ImageCropperProvider(props.value); return (_ctx, _cache) => { return renderSlot(_ctx.$slots, "default"); }; } }); export { _sfc_main as default };