@progress/kendo-vue-layout
Version:
24 lines (23 loc) • 667 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 e } from "vue";
const o = /* @__PURE__ */ r({
name: "KendoCardImage",
props: {
src: String
},
render() {
return e("img", {
class: "k-card-media",
src: this.$props.src
}, null);
}
});
export {
o as CardImage
};