UNPKG

@progress/kendo-vue-layout

Version:
30 lines (29 loc) 883 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { defineComponent as n, createVNode as o } from "vue"; import { getDefaultSlots as s, classNames as a } from "@progress/kendo-vue-common"; const i = /* @__PURE__ */ n({ name: "KendoActionSheetContent", props: { contentClassName: { type: String, default: void 0 } }, render() { const t = s(this), { contentClassName: e } = this.$props; return o("div", { class: a("k-actionsheet-content", e) }, [t]); } }); export { i as ActionSheetContent };