iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 683 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgShoppingBag(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: "M18.25 7.75H5.75v9l-1 2.5h14.5l-1-2.5v-9zM18.25 7.75l-2-3h-8.5l-2 3" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.75 10.75v1A2.25 2.25 0 0012 14v0a2.25 2.25 0 002.25-2.25v-1" })));
}
export default SvgShoppingBag;