Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update icon for recent activity #2122 #3489

Merged
merged 1 commit into from
Mar 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
} from "@coral-xyz/recoil";
import { styles as makeStyles, useCustomTheme } from "@coral-xyz/themes";
import { CallMade, Check, Clear } from "@mui/icons-material";
import FormatListBulletedIcon from "@mui/icons-material/FormatListBulleted";
import FormatListBulletedRoundedIcon from "@mui/icons-material/FormatListBulletedRounded";
import { IconButton, List, ListItem, Typography } from "@mui/material";

import { CloseButton, WithDrawer } from "../../common/Layout/Drawer";
Expand Down Expand Up @@ -91,7 +91,9 @@ export function RecentActivityButton() {
onClick={() => setOpenDrawer(true)}
size="large"
>
<FormatListBulletedIcon className={classes.networkSettingsIcon} />
<FormatListBulletedRoundedIcon
className={classes.networkSettingsIcon}
/>
</IconButton>
<WithDrawer openDrawer={openDrawer} setOpenDrawer={setOpenDrawer}>
<div style={{ height: "100%" }}>
Expand Down Expand Up @@ -372,7 +374,7 @@ function NoRecentActivityLabel({ minimize }: { minimize: boolean }) {
}}
>
<EmptyState
icon={(props: any) => <FormatListBulletedIcon {...props} />}
icon={(props: any) => <FormatListBulletedRoundedIcon {...props} />}
title="No Recent Activity"
subtitle="Your transactions and app activity will show up here when you start using Backpack!"
onClick={() => window.open(XNFT_GG_LINK)}
Expand Down
4 changes: 2 additions & 2 deletions packages/app-extension/src/components/common/Layout/Tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
useTab,
} from "@coral-xyz/recoil";
import { styles as makeStyles, useCustomTheme } from "@coral-xyz/themes";
import FormatListBulletedIcon from "@mui/icons-material/FormatListBulleted";
import FormatListBulletedRoundedIcon from "@mui/icons-material/FormatListBulletedRounded";
import { Tab, Tabs } from "@mui/material";
import Badge from "@mui/material/Badge";

Expand Down Expand Up @@ -275,7 +275,7 @@ function TabBar() {
tab === TAB_MESSAGES ? classes.activeTab : ""
}`}
icon={
<FormatListBulletedIcon
<FormatListBulletedRoundedIcon
style={{
width: "28px",
height: "28px",
Expand Down