import PropTypes from 'prop-types'; const SetupIcon = ({ width = 25, height = 24, color = '#292D32', ...props }) => ( ); export default SetupIcon; SetupIcon.propTypes = { width: PropTypes.string, height: PropTypes.string, color: PropTypes.string };