@mdui/icons
Version:
Material Icons 的 Web Components 图标组件库
16 lines (15 loc) • 959 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_TwoTone = class IconShoppingCart_TwoTone extends LitElement {
render() {
return svgTag('<path d="m15.55 11 2.76-5H6.16l2.37 5z" opacity=".3"/><path d="M15.55 13c.75 0 1.41-.41 1.75-1.03l3.58-6.49A.996.996 0 0 0 20.01 4H5.21l-.94-2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2h7.45zM6.16 6h12.15l-2.76 5H8.53L6.16 6zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"/>');
}
};
IconShoppingCart_TwoTone.styles = style;
IconShoppingCart_TwoTone = __decorate([
customElement('mdui-icon-shopping-cart--two-tone')
], IconShoppingCart_TwoTone);
export { IconShoppingCart_TwoTone };