react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 496 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgWatchAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M17 8.61l-1-5.77A1 1 0 0015 2H9a1 1 0 00-1 .84L7 8.61a6 6 0 000 6.78l1 5.77A1 1 0 009 22h6a1 1 0 001-.84l1-5.77a6 6 0 000-6.78zM9.85 4h4.3l.44 2.59a6 6 0 00-5.18 0zm4.3 16h-4.3l-.44-2.59a6 6 0 005.18 0zM12 16a4 4 0 114-4 4 4 0 01-4 4z" fill="currentColor"/>
</Svg>);
}
export default SvgWatchAlt;