const classNames = require('classnames'); const PropTypes = require('prop-types'); const React = require('react'); require('./stepnavigation.scss'); const StepNavigation = props => ( ); StepNavigation.propTypes = { active: PropTypes.number, className: PropTypes.string, steps: PropTypes.number }; module.exports = StepNavigation;