react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 451 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgShoppingBag(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M19 7h-3V6a4 4 0 00-8 0v1H5a1 1 0 00-1 1v11a3 3 0 003 3h10a3 3 0 003-3V8a1 1 0 00-1-1zm-9-1a2 2 0 014 0v1h-4zm8 13a1 1 0 01-1 1H7a1 1 0 01-1-1V9h2v1a1 1 0 002 0V9h4v1a1 1 0 002 0V9h2z" fill="currentColor"/>
</Svg>);
}
export default SvgShoppingBag;