@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 809 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 IconMoreTime_Sharp = class IconMoreTime_Sharp extends LitElement {
render() {
return svgTag('<path d="M10 8v6l4.7 2.9.8-1.2-4-2.4V8z"/><path d="M17.92 12A6.957 6.957 0 0 1 11 20c-3.9 0-7-3.1-7-7s3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9a8.963 8.963 0 0 0 8.94-10h-2.02z"/><path d="M20 5V2h-2v3h-3v2h3v3h2V7h3V5z"/>');
}
};
IconMoreTime_Sharp.styles = style;
IconMoreTime_Sharp = __decorate([
customElement('mdui-icon-more-time--sharp')
], IconMoreTime_Sharp);
export { IconMoreTime_Sharp };