react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 381 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgRedo(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21 11a1 1 0 00-1 1 8.05 8.05 0 11-2.22-5.5h-2.4a1 1 0 000 2h4.53a1 1 0 001-1V3a1 1 0 00-2 0v1.77A10 10 0 1022 12a1 1 0 00-1-1z" fill="currentColor"/>
</Svg>);
}
export default SvgRedo;