iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 620 B
JavaScript
import * as React from "react";
import Svg, { Rect, Path } from "react-native-svg";
function SvgCode(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Rect, { width: 14.5, height: 14.5, x: 4.75, y: 4.75, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, rx: 2 }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.75 10.75l2.5 2.25-2.5 2.25" })));
}
export default SvgCode;