react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 547 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgShoppingCart2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M4.004 6.417.762 3.174 2.176 1.76l3.243 3.243H20.66a1 1 0 0 1 .958 1.287l-2.4 8a1 1 0 0 1-.958.713H6.004v2h11v2h-12a1 1 0 0 1-1-1zm1.5 16.586a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m12 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3" />
</Svg>
);
export default SvgShoppingCart2Fill;