@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 790 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 IconLabelImportant_Rounded = class IconLabelImportant_Rounded extends LitElement {
render() {
return svgTag('<path d="M5.94 18.99H15c.65 0 1.26-.31 1.63-.84l3.95-5.57a.99.99 0 0 0 0-1.16l-3.96-5.58A1.95 1.95 0 0 0 15 5H5.94c-.81 0-1.28.93-.81 1.59L9 12l-3.87 5.41c-.47.66 0 1.58.81 1.58z"/>');
}
};
IconLabelImportant_Rounded.styles = style;
IconLabelImportant_Rounded = __decorate([
customElement('mdui-icon-label-important--rounded')
], IconLabelImportant_Rounded);
export { IconLabelImportant_Rounded };