UNPKG

styled-icons

Version:

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

16 lines (15 loc) 870 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Cart = 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 7H7.462L5.91 3.586A1 1 0 005 3H2v2h2.356L9.09 15.414A1 1 0 0010 16h8c.4 0 .762-.238.919-.606l3-7A.998.998 0 0021 7z", key: "k0" }), React.createElement("circle", { cx: 10.5, cy: 18.5, r: 1.5, key: "k1" }), React.createElement("circle", { cx: 17.5, cy: 18.5, r: 1.5, key: "k2" }))); }); Cart.displayName = 'Cart'; export var CartDimensions = { height: 24, width: 24 };