react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 528 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgArrowsH(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21.92 11.62a1 1 0 00-.21-.33l-4-4a1 1 0 10-1.42 1.42l2.3 2.29H5.41l2.3-2.29a1 1 0 10-1.42-1.42l-4 4a1 1 0 00-.21.33 1 1 0 000 .76 1 1 0 00.21.33l4 4a1 1 0 001.42 0 1 1 0 000-1.42L5.41 13h13.18l-2.3 2.29a1 1 0 000 1.42 1 1 0 001.42 0l4-4a1 1 0 00.21-.33 1 1 0 000-.76z" fill="currentColor"/>
</Svg>);
}
export default SvgArrowsH;