UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 396 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgArrowRightDownLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M14.59 16.004L5.982 7.397l1.414-1.414 8.607 8.606V7.004h2v11h-11v-2z" /> </Svg> ); } export default SvgArrowRightDownLine;