@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 809 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 IconShieldMoon_Sharp = class IconShieldMoon_Sharp extends LitElement {
render() {
return svgTag('<path d="M12 2 4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm3.97 12.41c-1.84 2.17-5.21 2.1-6.96-.07-2.19-2.72-.65-6.72 2.69-7.33.34-.06.63.27.51.6-.46 1.23-.39 2.64.32 3.86a4.51 4.51 0 0 0 3.18 2.2c.34.05.49.47.26.74z"/>');
}
};
IconShieldMoon_Sharp.styles = style;
IconShieldMoon_Sharp = __decorate([
customElement('mdui-icon-shield-moon--sharp')
], IconShieldMoon_Sharp);
export { IconShieldMoon_Sharp };