@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 967 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 IconMarkUnreadChatAlt_Rounded = class IconMarkUnreadChatAlt_Rounded extends LitElement {
render() {
return svgTag('<circle cx="19" cy="3" r="3"/><path d="M7 8c-.55 0-1-.45-1-1s.45-1 1-1h8.03a4.906 4.906 0 0 1-.92-4H4.01a2 2 0 0 0-2 2L2 19.58c0 .89 1.08 1.34 1.71.71L6 18h14c1.1 0 2-.9 2-2V6.97C21.16 7.61 20.13 8 19 8H7zm6 6H7c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1zm4-3H7c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z"/>');
}
};
IconMarkUnreadChatAlt_Rounded.styles = style;
IconMarkUnreadChatAlt_Rounded = __decorate([
customElement('mdui-icon-mark-unread-chat-alt--rounded')
], IconMarkUnreadChatAlt_Rounded);
export { IconMarkUnreadChatAlt_Rounded };