Add RTL support for ArrowBack icon in NavBar component

This commit is contained in:
Mo Tarbin
2026-08-11 02:10:12 -04:00
parent 6ace462797
commit 4e5222758d

View File

@@ -122,7 +122,7 @@ const NavBar = () => {
aria-label='Back from search'
title={t('back')}
>
<ArrowBack />
<ArrowBack className='rtl-flip' />
</IconButton>
)
}
@@ -154,7 +154,7 @@ const NavBar = () => {
: t('back')
}
>
<ArrowBack />
<ArrowBack className='rtl-flip' />
</IconButton>
)
}