UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 1.01 kB
import * as React from "react"; function ShoppingCart02Icon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M6.5 17h10.83c.95 0 1.424 0 1.811-.172a2 2 0 00.844-.703c.238-.35.323-.818.493-1.753l1.35-7.429c.06-.324.089-.486.043-.612a.5.5 0 00-.22-.264C21.536 6 21.372 6 21.042 6H5.001M2 2h1.316c.243 0 .364 0 .463.044a.5.5 0 01.212.182c.059.09.078.21.116.45l2.786 17.649c.038.24.057.36.116.45a.5.5 0 00.212.18c.099.045.22.045.463.045H19" })); } const ForwardRef = React.forwardRef(ShoppingCart02Icon); export default ForwardRef;