@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 839 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 IconLoupe_TwoTone = class IconLoupe_TwoTone extends LitElement {
render() {
return svgTag('<path d="M12 20c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8zm-5-9h4V7h2v4h4v2h-4v4h-2v-4H7v-2z" opacity=".3"/><path d="M11 17h2v-4h4v-2h-4V7h-2v4H7v2h4zm1 5h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10S2 6.49 2 12s4.49 10 10 10zm0-18c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8z"/>');
}
};
IconLoupe_TwoTone.styles = style;
IconLoupe_TwoTone = __decorate([
customElement('mdui-icon-loupe--two-tone')
], IconLoupe_TwoTone);
export { IconLoupe_TwoTone };