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