Skip to content

Commit

Permalink
Change reader non-static nav bar icon
Browse files Browse the repository at this point in the history
  • Loading branch information
schroda committed Jan 17, 2025
1 parent d95396e commit 8e1d9b3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import IconButton from '@mui/material/IconButton';
import ArrowBack from '@mui/icons-material/ArrowBack';
import ArrowForwardIcon from '@mui/icons-material/ArrowForward';
import PushPinIcon from '@mui/icons-material/PushPin';
import PushPinOutlinedIcon from '@mui/icons-material/PushPinOutlined';
import Divider from '@mui/material/Divider';
import { memo, useCallback, useLayoutEffect, useRef, useState } from 'react';
import Drawer from '@mui/material/Drawer';
Expand Down Expand Up @@ -123,7 +124,7 @@ const BaseReaderNavBarDesktop = ({
}}
color={isStaticNav ? 'primary' : 'inherit'}
>
<PushPinIcon />
{isStaticNav ? <PushPinIcon /> : <PushPinOutlinedIcon />}
</IconButton>
</Tooltip>
</Stack>
Expand Down

0 comments on commit 8e1d9b3

Please sign in to comment.