react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 526 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgBag(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M19 6h-3V5a2 2 0 00-2-2h-4a2 2 0 00-2 2v1H5a3 3 0 00-3 3v9a3 3 0 003 3h14a3 3 0 003-3V9a3 3 0 00-3-3zm-9-1h4v1h-4zm10 13a1 1 0 01-1 1H5a1 1 0 01-1-1v-5.61L8.68 14A1.19 1.19 0 009 14h6a1.19 1.19 0 00.32-.05L20 12.39zm0-7.72L14.84 12H9.16L4 10.28V9a1 1 0 011-1h14a1 1 0 011 1z" fill="currentColor"/>
</Svg>);
}
export default SvgBag;