@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 667 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 IconMedication = class IconMedication extends LitElement {
render() {
return svgTag('<path d="M6 3h12v2H6zm11 3H7c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-1 9h-2.5v2.5h-3V15H8v-3h2.5V9.5h3V12H16v3z"/>');
}
};
IconMedication.styles = style;
IconMedication = __decorate([
customElement('mdui-icon-medication')
], IconMedication);
export { IconMedication };