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