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