import React from 'react'; import PropTypes from 'prop-types'; const Media = props => ( ); Media.defaultProps = { fill: '#fff', }; Media.propTypes = { fill: PropTypes.string, }; export default Media;