@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 890 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 IconPowerOff_TwoTone = class IconPowerOff_TwoTone extends LitElement {
render() {
return svgTag('<path d="M12.12 9 16 12.88V9zm-.62 8.17V19h1v-1.83l1.07-1.06L8 10.54v3.11z" opacity=".3"/><path d="M10 3H8v1.88l2 2zm6 6v3.88l1.8 1.8.2-.2V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l2 2H16zM4.12 3.84 2.71 5.25 6 8.54v5.96L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84zm8.38 13.33V19h-1v-1.83L8 13.65v-3.11l5.57 5.57-1.07 1.06z"/>');
}
};
IconPowerOff_TwoTone.styles = style;
IconPowerOff_TwoTone = __decorate([
customElement('mdui-icon-power-off--two-tone')
], IconPowerOff_TwoTone);
export { IconPowerOff_TwoTone };