@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 906 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 IconHowToReg_Rounded = class IconHowToReg_Rounded extends LitElement {
render() {
return svgTag('<path d="m12 20-.86-.86a2.997 2.997 0 0 1 .02-4.26l.84-.82a9.34 9.34 0 0 0-1-.06c-2.67 0-8 1.34-8 4v2h9zm-1-8c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m5.18 7.78c-.39.39-1.03.39-1.42 0l-2.07-2.09a.99.99 0 0 1 0-1.39l.01-.01a.984.984 0 0 1 1.4 0l1.37 1.37 4.43-4.46a.996.996 0 0 1 1.41 0l.01.01a.99.99 0 0 1 0 1.39l-5.14 5.18z"/>');
}
};
IconHowToReg_Rounded.styles = style;
IconHowToReg_Rounded = __decorate([
customElement('mdui-icon-how-to-reg--rounded')
], IconHowToReg_Rounded);
export { IconHowToReg_Rounded };