@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 912 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 IconMarkEmailUnread_Rounded = class IconMarkEmailUnread_Rounded extends LitElement {
render() {
return svgTag('<path d="M19 10c1.13 0 2.16-.39 3-1.02V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h10.1c-.06.32-.1.66-.1 1 0 1.48.65 2.79 1.67 3.71L12 11 5.3 6.81a.85.85 0 1 0-.9 1.44l7.07 4.42c.32.2.74.2 1.06 0l4.77-2.98c.54.19 1.1.31 1.7.31zm-3-5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z"/>');
}
};
IconMarkEmailUnread_Rounded.styles = style;
IconMarkEmailUnread_Rounded = __decorate([
customElement('mdui-icon-mark-email-unread--rounded')
], IconMarkEmailUnread_Rounded);
export { IconMarkEmailUnread_Rounded };