@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 763 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 IconPlayLesson_Sharp = class IconPlayLesson_Sharp extends LitElement {
render() {
return svgTag('<path d="M18 11c.34 0 .67.03 1 .08V2H3v20h9.26A6.995 6.995 0 0 1 18 11zM7 11V4h5v7L9.5 9.5 7 11z"/><path d="M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z"/>');
}
};
IconPlayLesson_Sharp.styles = style;
IconPlayLesson_Sharp = __decorate([
customElement('mdui-icon-play-lesson--sharp')
], IconPlayLesson_Sharp);
export { IconPlayLesson_Sharp };