react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 413 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgArrowUpRight(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M17.92 6.62a1 1 0 00-.54-.54A1 1 0 0017 6H7a1 1 0 000 2h7.59l-8.3 8.29a1 1 0 000 1.42 1 1 0 001.42 0L16 9.41V17a1 1 0 002 0V7a1 1 0 00-.08-.38z" fill="currentColor"/>
</Svg>);
}
export default SvgArrowUpRight;