@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 792 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_Rounded = class IconPower_Rounded extends LitElement {
render() {
return svgTag('<path d="M16.01 7 16 4c0-.55-.45-1-1-1s-1 .45-1 1v3h-4V4c0-.55-.45-1-1-1s-1 .45-1 1v3h-.01C6.9 7 6 7.9 6 8.99v4.66c0 .53.21 1.04.58 1.41L9.5 18v2c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-2l2.92-2.92c.37-.38.58-.89.58-1.42V8.99C18 7.89 17.11 7 16.01 7z"/>');
}
};
IconPower_Rounded.styles = style;
IconPower_Rounded = __decorate([
customElement('mdui-icon-power--rounded')
], IconPower_Rounded);
export { IconPower_Rounded };