import React from 'react' import PropTypes from 'prop-types' import './features18.css' const Features18 = (props) => { return (
{props.feature1Slogan}

{props.feature1Title}

{props.feature1Description}

{props.feature1ImageAlt}
) } Features18.defaultProps = { feature1ImageSrc: 'https://images.unsplash.com/photo-1480498073050-4c6abeee90c1?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5MTMyMXwwfDF8cmFuZG9tfHx8fHx8fHx8MTcxNTQzMTM1OHw&ixlib=rb-4.0.3&q=80&w=1080', feature1ImageAlt: 'Real-time Weather Updates', feature1Slogan: 'Stay informed with up-to-date weather information', feature1Title: 'Real-time Updates', feature1Description: 'Get the latest weather updates for any location instantly', } Features18.propTypes = { feature1ImageSrc: PropTypes.string, feature1ImageAlt: PropTypes.string, feature1Slogan: PropTypes.string, feature1Title: PropTypes.string, feature1Description: PropTypes.string, } export default Features18