@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 840 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_Outlined = class IconHowToReg_Outlined extends LitElement {
render() {
return svgTag('<path d="M11 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zM5 18c.2-.63 2.57-1.68 4.96-1.94l2.04-2a9.34 9.34 0 0 0-1-.06c-2.67 0-8 1.34-8 4v2h9l-2-2H5zm15.6-5.5-5.13 5.17-2.07-2.08L12 17l3.47 3.5L22 13.91z"/>');
}
};
IconHowToReg_Outlined.styles = style;
IconHowToReg_Outlined = __decorate([
customElement('mdui-icon-how-to-reg--outlined')
], IconHowToReg_Outlined);
export { IconHowToReg_Outlined };