react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 463 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgSignRight(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M7 6v5a1 1 0 001 1h3v8H9a1 1 0 000 2h6a1 1 0 000-2h-2v-8h5a1 1 0 00.78-.37l2-2.5a1 1 0 000-1.25l-2-2.5A1 1 0 0018 5h-5V3a1 1 0 00-2 0v2H8a1 1 0 00-1 1zm2 1h8.52l1.2 1.5-1.2 1.5H9z" fill="currentColor"/>
</Svg>);
}
export default SvgSignRight;