react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 415 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgShoppingBag(props) {
return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}>
<Path d="M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4zM3 6h18M16 10a4 4 0 01-8 0"/>
</Svg>);
}
export default SvgShoppingBag;