iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 496 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBox(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: "M4.75 8L12 4.75 19.25 8 12 11.25 4.75 8zM4.75 16L12 19.25 19.25 16M19.25 8v8M4.75 8v8M12 11.5V19" })));
}
export default SvgBox;