react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 467 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgShoppingBag2Line = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M20.005 22h-16a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1m-1-2V4h-14v16zm-10-14v2a3 3 0 1 0 6 0V6h2v2a5 5 0 0 1-10 0V6z" />
</Svg>
);
export default SvgShoppingBag2Line;