UNPKG

presale-demo-pe

Version:

This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).

29 lines (25 loc) 615 B
import React, { PropTypes } from 'react'; import './Social.css'; const Social = ({ icon, text, url }) => { const logo = require(`../../resources/images/${icon}`); return ( <a href={url} className="social" target="_blank" > <img className="social__icon" src={logo} alt={text} /> <p className="social__text">{text}</p> </a> ) }; Social.propTypes = { icon: PropTypes.string, text: PropTypes.string, url: PropTypes.string }; export default Social;