UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

16 lines (15 loc) 879 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var CartAlt = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M21 4H2v2h2.3l3.521 9.683A2.004 2.004 0 009.7 17H18v-2H9.7l-.728-2H18c.4 0 .762-.238.919-.606l3-7A.998.998 0 0021 4z", key: "k0" }), React.createElement("circle", { cx: 10.5, cy: 19.5, r: 1.5, key: "k1" }), React.createElement("circle", { cx: 16.5, cy: 19.5, r: 1.5, key: "k2" }))); }); CartAlt.displayName = 'CartAlt'; export var CartAltDimensions = { height: 24, width: 24 };