diff --git a/src/OnboardingSPA/steps/GetStarted/SiteTypeSetup/PrimarySite/index.js b/src/OnboardingSPA/steps/GetStarted/SiteTypeSetup/PrimarySite/index.js index 1158e2bc4..6a4cc0dc4 100644 --- a/src/OnboardingSPA/steps/GetStarted/SiteTypeSetup/PrimarySite/index.js +++ b/src/OnboardingSPA/steps/GetStarted/SiteTypeSetup/PrimarySite/index.js @@ -128,6 +128,7 @@ const StepPrimarySetup = () => { return (
{ return (
{
{ primaryTypesList && primaryTypesList.length > 1 && ( -
- - changePrimaryType( - 'back' - ) - } - onKeyUp={ () => - changePrimaryType( - 'back' - ) - } - role="button" - tabIndex={ 0 } - style={ { - backgroundImage: +
+ + changePrimaryType( + 'back' + ) + } + onKeyUp={ () => + changePrimaryType( + 'back' + ) + } + role="button" + tabIndex={ 0 } + style={ { + backgroundImage: 'var(--chevron-left-icon)', - } } - /> -
- ) } + } } + /> +
+ ) }
{
{ primaryTypesList && primaryTypesList.length > 1 && ( -
- - changePrimaryType( - 'next' - ) - } - onKeyUp={ () => - changePrimaryType( - 'next' - ) - } - role="button" - tabIndex={ 0 } - style={ { - backgroundImage: +
+ + changePrimaryType( + 'next' + ) + } + onKeyUp={ () => + changePrimaryType( + 'next' + ) + } + role="button" + tabIndex={ 0 } + style={ { + backgroundImage: 'var(--chevron-right-icon)', - } } - /> -
- ) } + } } + /> +
+ ) }
) }