@progress/kendo-vue-buttons
Version:
27 lines (26 loc) • 765 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 t, createVNode as o } from "vue";
import { getDefaultSlots as r } from "@progress/kendo-vue-common";
const l = /* @__PURE__ */ t({
name: "KendoToolbarItem",
methods: {
element() {
return this.$el;
}
},
render() {
const e = r(this);
return o("div", {
class: "k-toolbar-item"
}, [e]);
}
});
export {
l as ToolbarItem
};