UNPKG

react-feather

Version:
70 lines (65 loc) 1.4 kB
import React from 'react'; import PropTypes from 'prop-types'; const CloudRain = props => { const { color, size, ...otherProps } = props; return ( <svg xmlns="http://www.w3.org/2000/svg" width={size} height={size} viewBox="0 0 24 24" {...otherProps} > <line x1="16" y1="13" x2="16" y2="21" fill="none" stroke={color} strokeLinecap="round" strokeMiterlimit="10" strokeWidth="2" /> <line x1="8" y1="13" x2="8" y2="21" fill="none" stroke="currentColor" strokeLinecap="round" strokeMiterlimit="10" strokeWidth="2" /> <line x1="12" y1="15" x2="12" y2="23" fill="none" stroke="currentColor" strokeLinecap="round" strokeMiterlimit="10" strokeWidth="2" /> <path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25" fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" /> </svg> ); }; CloudRain.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CloudRain.defaultProps = { color: 'currentColor', size: '24', }; export default CloudRain;