@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 883 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 IconNoEncryption_Rounded = class IconNoEncryption_Rounded extends LitElement {
render() {
return svgTag('<path d="M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.32 0-4.26 1.59-4.82 3.74L8.9 6.46V6zm-3.78-.49a.996.996 0 1 0-1.41 1.41l1.33 1.33C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12.78l.29.29a.996.996 0 1 0 1.41-1.41L5.12 5.51z"/>');
}
};
IconNoEncryption_Rounded.styles = style;
IconNoEncryption_Rounded = __decorate([
customElement('mdui-icon-no-encryption--rounded')
], IconNoEncryption_Rounded);
export { IconNoEncryption_Rounded };