@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 830 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 IconLabelOff_Outlined = class IconLabelOff_Outlined extends LitElement {
render() {
return svgTag('<path d="m16 7 3.55 5-1.63 2.29 1.43 1.43L22 12l-4.37-6.16C17.27 5.33 16.67 5 16 5l-7.37.01 2 1.99H16zM2 4.03l1.58 1.58C3.22 5.96 3 6.46 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.28 0 .55-.07.79-.18L18.97 21l1.41-1.41L3.41 2.62 2 4.03zM14.97 17H5V7.03L14.97 17z"/>');
}
};
IconLabelOff_Outlined.styles = style;
IconLabelOff_Outlined = __decorate([
customElement('mdui-icon-label-off--outlined')
], IconLabelOff_Outlined);
export { IconLabelOff_Outlined };