react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 518 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgShoppingCartLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M4.005 16V4h-2V2h3a1 1 0 0 1 1 1v12h12.438l2-8H8.005V5h13.72a1 1 0 0 1 .97 1.243l-2.5 10a1 1 0 0 1-.97.757H5.004a1 1 0 0 1-1-1m2 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4m12 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4" />
</Svg>
);
export default SvgShoppingCartLine;