@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 902 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 IconColorize_Rounded = class IconColorize_Rounded extends LitElement {
render() {
return svgTag('<path d="m20.71 5.63-2.34-2.34a.996.996 0 0 0-1.41 0l-3.12 3.12-1.23-1.21c-.39-.39-1.02-.38-1.41 0a.996.996 0 0 0 0 1.41l.72.72-8.77 8.77c-.1.1-.15.22-.15.36v4.04c0 .28.22.5.5.5h4.04c.13 0 .26-.05.35-.15l8.77-8.77.72.72a.996.996 0 1 0 1.41-1.41l-1.22-1.22 3.12-3.12a.99.99 0 0 0 .02-1.42zM6.92 19 5 17.08l8.06-8.06 1.92 1.92L6.92 19z"/>');
}
};
IconColorize_Rounded.styles = style;
IconColorize_Rounded = __decorate([
customElement('mdui-icon-colorize--rounded')
], IconColorize_Rounded);
export { IconColorize_Rounded };