react-form-stepper
react-form-stepper copied to clipboard
Not able to put icons instead of step numbers
If you create your steps like:
const steps = [
{ label: 'Step 1' },
{ label: 'Step 2' },
{ label: 'Step 3' },
{ label: 'Step 4' },
{ label: 'Step 5' },
{ label: 'Step 6' },
{ label: 'Finished', completedBgColor: 'green', children: <Flex alignItems={'center'} height={'100%'}><Icon boxSize={7} alignItems={'center'} color={'white'} as={CiTrophy} /></Flex> }]
then the icon works.