@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 740 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_Sharp = class IconLoupe_Sharp extends LitElement {
render() {
return svgTag('<path d="M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-.27-4.97c-6.08-.44-11.14 4.62-10.7 10.7.38 5.28 5 9.27 10.29 9.27H22v-9.68c0-5.3-3.98-9.91-9.27-10.29zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/>');
}
};
IconLoupe_Sharp.styles = style;
IconLoupe_Sharp = __decorate([
customElement('mdui-icon-loupe--sharp')
], IconLoupe_Sharp);
export { IconLoupe_Sharp };