react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 513 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgShoppingBag3Line = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M6.505 2h11a1 1 0 0 1 .8.4l2.7 3.6v15a1 1 0 0 1-1 1h-16a1 1 0 0 1-1-1V6l2.7-3.6a1 1 0 0 1 .8-.4m12.5 6h-14v12h14zm-.5-2-1.5-2h-10l-1.5 2zm-9.5 4v2a3 3 0 1 0 6 0v-2h2v2a5 5 0 0 1-10 0v-2z" />
</Svg>
);
export default SvgShoppingBag3Line;