UNPKG

react-feather

Version:
45 lines (40 loc) 962 B
import React from 'react'; import PropTypes from 'prop-types'; const CloudLightning = 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} > <path d="M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9" fill="none" stroke={color} strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" /> <polyline points="13 11 9 17 15 17 11 23" fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" /> </svg> ); }; CloudLightning.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), }; CloudLightning.defaultProps = { color: 'currentColor', size: '24', }; export default CloudLightning;