react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 492 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgCornerUpRight(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M19.61 7.25a1 1 0 00-.22-.33l-4.63-4.63a1 1 0 00-1.41 0 1 1 0 000 1.42l2.92 2.92h-8a4 4 0 00-4 4V21a1 1 0 002 0V10.63a2 2 0 012-2h8l-2.92 2.92a1 1 0 00.71 1.71 1 1 0 00.7-.3l4.63-4.62a1.19 1.19 0 00.22-.34 1 1 0 000-.75z" fill="currentColor"/>
</Svg>);
}
export default SvgCornerUpRight;