react-native-feather
Version:
React Native component for Feather icons
10 lines (9 loc) • 473 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgInbox(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="M22 12h-6l-2 3h-4l-2-3H2"/>
<Path d="M5.45 5.11L2 12v6a2 2 0 002 2h16a2 2 0 002-2v-6l-3.45-6.89A2 2 0 0016.76 4H7.24a2 2 0 00-1.79 1.11z"/>
</Svg>);
}
export default SvgInbox;