UNPKG

@mdui/icons

Version:

Material Icons 的 Web Components 图标组件库

16 lines (15 loc) 699 B
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 IconShop_Outlined = class IconShop_Outlined extends LitElement { render() { return svgTag('<path d="M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zm10 15H4V8h16v11zM9 18l7.5-5L9 9z"/>'); } }; IconShop_Outlined.styles = style; IconShop_Outlined = __decorate([ customElement('mdui-icon-shop--outlined') ], IconShop_Outlined); export { IconShop_Outlined };