react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 402 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgVenus(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M19 9a7 7 0 10-8 6.92V18h-1a1 1 0 000 2h1v1a1 1 0 002 0v-1h1a1 1 0 000-2h-1v-2.08A7 7 0 0019 9zm-7 5a5 5 0 115-5 5 5 0 01-5 5z" fill="currentColor"/>
</Svg>);
}
export default SvgVenus;