diff --git a/src/components/Stepper/Controls/index.jsx b/src/components/Stepper/Controls/index.jsx index aa4962fb..104c64d5 100644 --- a/src/components/Stepper/Controls/index.jsx +++ b/src/components/Stepper/Controls/index.jsx @@ -9,7 +9,6 @@ type ControlProps = { next: string, back: string, onPrevious: () => void, - firstPage: boolean, disabled: boolean, } @@ -18,14 +17,18 @@ const controlStyle = { padding: sm, } +const firstButtonStyle = { + marginRight: sm, +} + const ControlButtons = ({ - next, back, firstPage, onPrevious, disabled, + next, back, onPrevious, disabled, }: ControlProps) => (