UNPKG

react-native-feather

Version:
10 lines (9 loc) 392 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgTrendingUp(props) { return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}> <Path d="M23 6l-9.5 9.5-5-5L1 18"/> <Path d="M17 6h6v6"/> </Svg>); } export default SvgTrendingUp;