iconic-icons-rn
Version:
Iconic icons for React Native
10 lines (9 loc) • 702 B
JavaScript
import * as React from "react";
import Svg, { Path, Circle } from "react-native-svg";
function SvgShoppingCart(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M7.75 7.75h11.5l-1.637 6.958a2 2 0 01-1.947 1.542h-4.127a2 2 0 01-1.933-1.488L7.75 7.75zm0 0l-.75-3H4.75" }),
React.createElement(Circle, { cx: 10, cy: 19, r: 1, fill: "currentColor" }),
React.createElement(Circle, { cx: 17, cy: 19, r: 1, fill: "currentColor" })));
}
export default SvgShoppingCart;