react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 475 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgShare2Line = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m12 2.586 6.207 6.207-1.414 1.414L13 6.414V16h-2V6.414l-3.793 3.793-1.414-1.414zM3 18v-4h2v4a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-4h2v4a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3" />
</Svg>
);
export default SvgShare2Line;