@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 774 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 IconShop_Rounded = class IconShop_Rounded extends LitElement {
render() {
return svgTag('<path d="M16 6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-4zm-6-2h4v2h-4V4zM9 17.07V9.83c0-.38.4-.62.74-.44l6.03 3.21c.33.18.36.65.04.86l-6.03 4.02a.5.5 0 0 1-.78-.41z"/>');
}
};
IconShop_Rounded.styles = style;
IconShop_Rounded = __decorate([
customElement('mdui-icon-shop--rounded')
], IconShop_Rounded);
export { IconShop_Rounded };