react-native-remix-icons
Version:
Remix Icon for React Native
14 lines (13 loc) • 399 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgShareBoxLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M10 3v2H5v14h14v-5h2v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm7.586 2H13V3h8v8h-2V6.414l-7 7L10.586 12z" />
</Svg>
);
export default SvgShareBoxLine;