@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 800 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 IconShoppingCart_Sharp = class IconShoppingCart_Sharp extends LitElement {
render() {
return svgTag('<path d="M17 18c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm0-3 1.1-2h7.45c.75 0 1.41-.41 1.75-1.03L21.7 4H5.21l-.94-2H1v2h2l3.6 7.59L3.62 17H19v-2H7z"/>');
}
};
IconShoppingCart_Sharp.styles = style;
IconShoppingCart_Sharp = __decorate([
customElement('mdui-icon-shopping-cart--sharp')
], IconShoppingCart_Sharp);
export { IconShoppingCart_Sharp };