@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 702 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 IconPower_Outlined = class IconPower_Outlined extends LitElement {
render() {
return svgTag('<path d="M16 9v4.66l-3.5 3.51V19h-1v-1.83L8 13.65V9h8m0-6h-2v4h-4V3H8v4h-.01C6.9 6.99 6 7.89 6 8.98v5.52L9.5 18v3h5v-3l3.5-3.51V9c0-1.1-.9-2-2-2V3z"/>');
}
};
IconPower_Outlined.styles = style;
IconPower_Outlined = __decorate([
customElement('mdui-icon-power--outlined')
], IconPower_Outlined);
export { IconPower_Outlined };