@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 762 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 IconWarning_Rounded = class IconWarning_Rounded extends LitElement {
render() {
return svgTag('<path d="M4.47 21h15.06c1.54 0 2.5-1.67 1.73-3L13.73 4.99c-.77-1.33-2.69-1.33-3.46 0L2.74 18c-.77 1.33.19 3 1.73 3zM12 14c-.55 0-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z"/>');
}
};
IconWarning_Rounded.styles = style;
IconWarning_Rounded = __decorate([
customElement('mdui-icon-warning--rounded')
], IconWarning_Rounded);
export { IconWarning_Rounded };