react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 521 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgMoon(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21.64 13a1 1 0 00-1.05-.14 8.05 8.05 0 01-3.37.73 8.15 8.15 0 01-8.14-8.1 8.59 8.59 0 01.25-2A1 1 0 008 2.36a10.14 10.14 0 1014 11.69 1 1 0 00-.36-1.05zm-9.5 6.69A8.14 8.14 0 017.08 5.22v.27a10.15 10.15 0 0010.14 10.14 9.79 9.79 0 002.1-.22 8.11 8.11 0 01-7.18 4.32z" fill="currentColor"/>
</Svg>);
}
export default SvgMoon;