iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 718 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgArchive(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: "M18.25 8.75H5.75l.828 8.69a2 2 0 001.99 1.81h6.863a2 2 0 001.991-1.81l.828-8.69z" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M19.25 5.75a1 1 0 00-1-1H5.75a1 1 0 00-1 1v2a1 1 0 001 1h12.5a1 1 0 001-1v-2zM9.75 13.25h4.5" })));
}
export default SvgArchive;