import PropTypes from 'prop-types'; const EquipmentIcon = ({ width = 96, height = 96, color = '#007aff', ...props }) => ( ); export default EquipmentIcon; EquipmentIcon.propTypes = { width: PropTypes.string, height: PropTypes.string, color: PropTypes.string };