@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 963 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 IconMailLock_Rounded = class IconMailLock_Rounded extends LitElement {
render() {
return svgTag('<path d="M22 9.97V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h12v-5.03c0-2.76 2.24-5 5-5h1zm-2.4-1.72-6.54 4.09c-.65.41-1.47.41-2.12 0L4.4 8.25a.85.85 0 1 1 .9-1.44L12 11l6.7-4.19a.85.85 0 0 1 1.3.72c0 .29-.15.56-.4.72z"/><path d="M23 15v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z"/>');
}
};
IconMailLock_Rounded.styles = style;
IconMailLock_Rounded = __decorate([
customElement('mdui-icon-mail-lock--rounded')
], IconMailLock_Rounded);
export { IconMailLock_Rounded };