react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 456 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgHistoryAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M11.44 2a10 10 0 00-6.88 2.77V3a1 1 0 00-2 0v4.5a1 1 0 001 1h4.5a1 1 0 000-2h-2.4A8 8 0 1111.44 20a1 1 0 100 2 10 10 0 100-20zm0 6a1 1 0 00-1 1v3a1 1 0 001 1h2a1 1 0 000-2h-1V9a1 1 0 00-1-1z" fill="currentColor"/>
</Svg>);
}
export default SvgHistoryAlt;