iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 656 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgInbox(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M19.25 11.75L17.664 6.2a2 2 0 00-1.923-1.45H8.26A2 2 0 006.336 6.2L4.75 11.75M10.214 12.369c-.258-.336-.62-.619-1.043-.619H4.75v5.5a2 2 0 002 2h10.5a2 2 0 002-2v-5.5h-4.42c-.425 0-.786.283-1.044.619A2.246 2.246 0 0112 13.25a2.246 2.246 0 01-1.786-.881z" })));
}
export default SvgInbox;