@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 866 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 IconPrivacyTip_Rounded = class IconPrivacyTip_Rounded extends LitElement {
render() {
return svgTag('<path d="M4.19 4.47C3.47 4.79 3 5.51 3 6.3V11c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V6.3c0-.79-.47-1.51-1.19-1.83l-7-3.11c-.52-.23-1.11-.23-1.62 0l-7 3.11zM12 7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1s-1-.45-1-1v-4c0-.55.45-1 1-1z"/>');
}
};
IconPrivacyTip_Rounded.styles = style;
IconPrivacyTip_Rounded = __decorate([
customElement('mdui-icon-privacy-tip--rounded')
], IconPrivacyTip_Rounded);
export { IconPrivacyTip_Rounded };