@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 847 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 IconHighlightOff_Outlined = class IconHighlightOff_Outlined extends LitElement {
render() {
return svgTag('<path d="M14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/>');
}
};
IconHighlightOff_Outlined.styles = style;
IconHighlightOff_Outlined = __decorate([
customElement('mdui-icon-highlight-off--outlined')
], IconHighlightOff_Outlined);
export { IconHighlightOff_Outlined };