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