react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 646 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgMoonset(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M11 19H8a1 1 0 000 2h3a1 1 0 000-2zm9-4h-1.16A8.18 8.18 0 0020 12.05a1 1 0 00-.34-.93 1 1 0 00-1-.19 6 6 0 01-1.92.32 6.06 6.06 0 01-6.06-6 6.93 6.93 0 01.1-1 1 1 0 00-.35-.92 1 1 0 00-1-.18A8.06 8.06 0 004 10.68 8 8 0 005.27 15H4a1 1 0 000 2h16a1 1 0 000-2zm-3.72 0H7.83a6 6 0 01.88-9.36 8.06 8.06 0 008.05 7.61 7 7 0 00.79 0A6.08 6.08 0 0116.28 15zM16 19h-1a1 1 0 000 2h1a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgMoonset;