import React from 'react'; import PropTypes from 'prop-types'; import styles from './WizardNav.css'; import Icon from './Icon'; const WizardNav = (props) => { const {goToStep = () => {}, currentStep, items, icon} = props; return ( ); }; WizardNav.propTypes = { currentStep: PropTypes.number.isRequired }; export default WizardNav;