ProgressSteps example
```js

initialState = {
	step: 0
};

const steps = [
	{
		id: 'First step'
	},
	{
		id: 'Second step summary fills the space'
	},
	{
		id: 'Final step'
	}
];

const nextStep = () => {
	const step = state.step === 2 ? 0 : state.step + 1;
	setState({step})
}

<div>
<ProgressSteps
showSummary
	steps={steps}
	currentIndex={state.step}
	visibleFrom="15rem"
/>

<BrandButton onClick={nextStep}>
	{state.step !== 2 && <span>Next</span>}
	{state.step === 2 && <span>Start again</span>}
</BrandButton>
</div>
```
