iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 508 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgShare(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: "M9.25 4.75h-2.5a2 2 0 00-2 2v10.5a2 2 0 002 2h10.5a2 2 0 002-2v-2.5M19.25 9.25v-4.5h-4.5M19 5l-7.25 7.25" })));
}
export default SvgShare;