react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 462 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgExchangeAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21.71 9.29l-4-4a1 1 0 00-1.42 1.42L18.59 9H7a1 1 0 000 2h14a1 1 0 00.92-.62 1 1 0 00-.21-1.09zM17 13H3a1 1 0 00-.92.62 1 1 0 00.21 1.09l4 4a1 1 0 001.42 0 1 1 0 000-1.42L5.41 15H17a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgExchangeAlt;