UNPKG

@sandlada/vue-mdc

Version:

![Vue MDC Logo](https://raw.githubusercontent.com/sandlada/vue-mdc/refs/heads/main/docs/vue-mdc-cover.png)

26 lines (25 loc) 715 B
/** * @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