@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 804 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 IconInventory_2_Rounded = class IconInventory_2_Rounded extends LitElement {
render() {
return svgTag('<path d="M20 2H4c-1 0-2 .9-2 2v3.01c0 .72.43 1.34 1 1.69V20c0 1.1 1.1 2 2 2h14c.9 0 2-.9 2-2V8.7c.57-.35 1-.97 1-1.69V4c0-1.1-1-2-2-2zm-6 12h-4c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1zm6-7H4V4h16v3z"/>');
}
};
IconInventory_2_Rounded.styles = style;
IconInventory_2_Rounded = __decorate([
customElement('mdui-icon-inventory-2--rounded')
], IconInventory_2_Rounded);
export { IconInventory_2_Rounded };