@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 854 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 IconMarkChatRead_Rounded = class IconMarkChatRead_Rounded extends LitElement {
render() {
return svgTag('<path d="M18.05 19.29a.996.996 0 0 1-1.41 0l-2.12-2.12a.996.996 0 1 1 1.41-1.41l1.41 1.41 3.54-3.54a.996.996 0 1 1 1.41 1.41l-4.24 4.25zM12 17a6.995 6.995 0 0 1 10-6.32V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h6c0-.17.01-.33.03-.5-.02-.17-.03-.33-.03-.5z"/>');
}
};
IconMarkChatRead_Rounded.styles = style;
IconMarkChatRead_Rounded = __decorate([
customElement('mdui-icon-mark-chat-read--rounded')
], IconMarkChatRead_Rounded);
export { IconMarkChatRead_Rounded };