@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 764 B
JavaScript
import { __decorate } from "tslib";
import { LitElement } from 'lit';
import { customElement } from 'lit/decorators/custom-element.js';
import { style } from '@mdui/shared/icons/shared/style.js';
import { svgTag } from '@mdui/shared/icons/shared/svg-tag.js';
let IconHeight_Rounded = class IconHeight_Rounded extends LitElement {
render() {
return svgTag('<path d="M13 6.99h1.79c.45 0 .67-.54.35-.85l-2.79-2.78a.513.513 0 0 0-.71 0L8.86 6.14c-.32.31-.1.85.35.85H11v10.02H9.21c-.45 0-.67.54-.35.85l2.79 2.78c.2.19.51.19.71 0l2.79-2.78c.32-.31.09-.85-.35-.85H13V6.99z"/>');
}
};
IconHeight_Rounded.styles = style;
IconHeight_Rounded = __decorate([
customElement('mdui-icon-height--rounded')
], IconHeight_Rounded);
export { IconHeight_Rounded };