@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 648 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 IconReplyAll_Sharp = class IconReplyAll_Sharp extends LitElement {
render() {
return svgTag('<path d="M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z"/>');
}
};
IconReplyAll_Sharp.styles = style;
IconReplyAll_Sharp = __decorate([
customElement('mdui-icon-reply-all--sharp')
], IconReplyAll_Sharp);
export { IconReplyAll_Sharp };