import React from 'react'; import PropTypes from 'prop-types'; const Dots = ({ fill, ...rest }) => ( ); Dots.defaultProps = { fill: '#9EA7B8', }; Dots.propTypes = { fill: PropTypes.string, }; export default Dots;