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