@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 756 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 IconContacts_Sharp = class IconContacts_Sharp extends LitElement {
render() {
return svgTag('<path d="M20 0H4v2h16V0zM4 24h16v-2H4v2zM22 4H2v16h20V4zM12 6.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z"/>');
}
};
IconContacts_Sharp.styles = style;
IconContacts_Sharp = __decorate([
customElement('mdui-icon-contacts--sharp')
], IconContacts_Sharp);
export { IconContacts_Sharp };