@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 761 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 IconClear_Rounded = class IconClear_Rounded extends LitElement {
render() {
return svgTag('<path d="M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"/>');
}
};
IconClear_Rounded.styles = style;
IconClear_Rounded = __decorate([
customElement('mdui-icon-clear--rounded')
], IconClear_Rounded);
export { IconClear_Rounded };