@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 741 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 IconSpeed_Sharp = class IconSpeed_Sharp extends LitElement {
render() {
return svgTag('<path d="m20.39 8.56-1.24 1.86a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.86-1.24A10 10 0 0 0 4 20h16a10 10 0 0 0 .38-11.44z"/><path d="M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z"/>');
}
};
IconSpeed_Sharp.styles = style;
IconSpeed_Sharp = __decorate([
customElement('mdui-icon-speed--sharp')
], IconSpeed_Sharp);
export { IconSpeed_Sharp };