@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 335 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgArrowRightDownLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M14.59 16.003 5.982 7.397l1.414-1.415 8.607 8.607V7.003h2v11h-11v-2h7.585Z" />
</Svg>
);
export default SvgArrowRightDownLine;