react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 464 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgCornerUpRightAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M19.92 10.12a1 1 0 00-.21-.33l-3-3a1 1 0 10-1.42 1.42l1.3 1.29H7a3 3 0 00-3 3v4a1 1 0 002 0v-4a1 1 0 011-1h9.59l-1.3 1.29a1 1 0 000 1.42 1 1 0 001.42 0l3-3a1 1 0 00.21-.33 1 1 0 000-.76z" fill="currentColor"/>
</Svg>);
}
export default SvgCornerUpRightAlt;