Update icons location

This commit is contained in:
Hazem Krimi
2021-01-19 00:35:55 +01:00
parent 2e262968af
commit dc6e2df560
28 changed files with 17 additions and 14 deletions
+4 -1
View File
@@ -78,7 +78,10 @@ const MobileNav: FC<Props> = ({ open, close }) => {
return (
<Bar dark={dark} open={open} ref={ref}>
<div className='close'>
<IconButton icon={dark ? '/dark-close.svg' : '/light-close.svg'} onClick={close} />
<IconButton
icon={dark ? '/icons/dark-close.svg' : '/icons/light-close.svg'}
onClick={close}
/>
</div>
<div className='mobile-button-wrapper'>
<Button onClick={() => toggle()}>{dark ? 'Light Mode' : 'Dark Mode'}</Button>