Skip to content

Commit

Permalink
fix: share icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
blushi committed Jul 10, 2024
1 parent dab681c commit 46b7a76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const SharePublicMenuItem = ({
}: SharePublicMenuItemProps): JSX.Element => (
<MenuItem {...props}>
<ListItemIcon sx={{ height: '24px', width: '24px' }}>
<ShareIcon color="primary" />
<ShareIcon className="text-brand-300" />
</ListItemIcon>
<ListItemText>
Share the public link
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const ActionButton = ({
onClickShare(event);
}}
>
<ShareIcon sx={{ height: '24px', width: '24px' }} color="primary" />
<ShareIcon className="w-[24px] h-[24px] text-brand-300" />
</IconButton>
)}
</div>
Expand Down

0 comments on commit 46b7a76

Please sign in to comment.