@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 774 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M16 20.3345V18H14V14H3.33238C3.11567 13.2034 3 12.3652 3 11.5C3 6.93954 6.21346 3.1296 10.4996 2.211C10.1765 3.07941 10 4.01909 10 5.00001C10 9.41829 13.5817 13 18 13C19.4531 13 20.8157 12.6126 21.9902 11.9354C21.8178 15.7576 19.3867 18.9916 16 20.3345ZM7 20H14V22H7V20ZM2 16H12V18H2V16Z"/>
</Svg>);
};
Icon.displayName = 'MoonFoggyFill';
/**
* Remix Icon: Moon Foggy Fill
* @see {@link https://remixicon.com/icon/moon-foggy-fill Remix Icon Docs}
*/
export const MoonFoggyFill = memo(Icon);