react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 676 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgCloudRain(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M12.56 12.67a1 1 0 00-1.12 0c-.11.08-2.69 1.86-2.69 4.58a3.25 3.25 0 006.5 0c0-2.75-2.58-4.51-2.69-4.58zM12 18.5a1.25 1.25 0 01-1.25-1.25A3.66 3.66 0 0112 14.8a3.61 3.61 0 011.25 2.45A1.25 1.25 0 0112 18.5zm6.42-10.78A7 7 0 005.06 9.61a4 4 0 00.61 7.87h.08a1 1 0 001-.92 1 1 0 00-.92-1.08A2 2 0 014 13.5a2 2 0 012-2 1 1 0 001-1 5 5 0 019.73-1.61 1 1 0 00.78.67 3 3 0 01.43 5.79 1 1 0 00.62 1.9 5 5 0 00-.14-9.53z" fill="currentColor"/>
</Svg>);
}
export default SvgCloudRain;