@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 749 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 IconBrush_Rounded = class IconBrush_Rounded extends LitElement {
render() {
return svgTag('<path d="M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm13.71-9.37-1.34-1.34a.996.996 0 0 0-1.41 0L9 12.25 11.75 15l8.96-8.96a.996.996 0 0 0 0-1.41z"/>');
}
};
IconBrush_Rounded.styles = style;
IconBrush_Rounded = __decorate([
customElement('mdui-icon-brush--rounded')
], IconBrush_Rounded);
export { IconBrush_Rounded };