@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 899 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 IconMedicalServices_TwoTone = class IconMedicalServices_TwoTone extends LitElement {
render() {
return svgTag('<path d="M4 20h16V8H4v12zm4-7h3v-3h2v3h3v2h-3v3h-2v-3H8v-2z" opacity=".3"/><path d="M20 6h-4V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM10 4h4v2h-4V4zm10 16H4V8h16v12z"/><path d="M11 18h2v-3h3v-2h-3v-3h-2v3H8v2h3z"/>');
}
};
IconMedicalServices_TwoTone.styles = style;
IconMedicalServices_TwoTone = __decorate([
customElement('mdui-icon-medical-services--two-tone')
], IconMedicalServices_TwoTone);
export { IconMedicalServices_TwoTone };