iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 562 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgLink(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: "M16.75 13.25L18 12a4.243 4.243 0 000-6v0a4.243 4.243 0 00-6 0l-1.25 1.25M7.25 10.75L6 12a4.243 4.243 0 000 6v0a4.243 4.243 0 006 0l1.25-1.25M14.25 9.75l-4.5 4.5" })));
}
export default SvgLink;