@progress/kendo-vue-layout
Version:
36 lines (35 loc) • 986 B
JavaScript
/**
* @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 r, createVNode as n } from "vue";
import { getDefaultSlots as o, classNames as s } from "@progress/kendo-vue-common";
const l = /* @__PURE__ */ r({
name: "KendoActionSheetHeader",
props: {
headerClassName: {
type: String,
default: void 0
},
headerStyle: {
type: String,
default: void 0
}
},
render() {
const e = o(this), {
headerStyle: t,
headerClassName: a
} = this.$props;
return n("div", {
style: t,
class: s("k-actionsheet-titlebar", a)
}, [e]);
}
});
export {
l as ActionSheetHeader
};