react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 407 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgArrowRightDownLongFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M5.636 4.222 4.222 5.636l9.606 9.607L10 19.07h9.071V10l-3.828 3.829z" />
</Svg>
);
export default SvgArrowRightDownLongFill;