react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 401 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgCloud(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M18.42 9.21a7 7 0 00-13.36 1.9A4 4 0 006 19h11a5 5 0 001.42-9.79zM17 17H6a2 2 0 010-4 1 1 0 001-1 5 5 0 019.73-1.61 1 1 0 00.78.66A3 3 0 0117 17z" fill="currentColor"/>
</Svg>);
}
export default SvgCloud;