@sandlada/vue-mdc
Version:

26 lines (25 loc) • 715 B
JavaScript
/**
* @license
* Copyright 2025 Sandlada & Kai Orion
* SPDX-License-Identifier: MIT
*/
import { defineComponent, createVNode } from "vue";
import { componentNamePrefix } from "../../internals/component-name-prefix/component-name-prefix.js";
import { props } from "./elevation.definition.js";
import css from "./styles/elevation.module.scss.js";
const Elevation = /* @__PURE__ */ defineComponent({
name: `${componentNamePrefix}-elevation`,
props,
slots: {},
render() {
return createVNode("span", {
"data-component": "elevation",
"class": [css.elevation, css[`level-${this.level}`]]
}, null);
},
inheritAttrs: true
});
export {
Elevation
};
//# sourceMappingURL=elevation.js.map