Skip to content

Commit

Permalink
fix: using new icons for the accounts card
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianocola committed Aug 27, 2024
1 parent 0838254 commit d1ba302
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/ui/components/account/account.card.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export function AccountCardHiddenBalance() {
<IconButton icon={<ArrowUpIcon />} label="Send" />
<IconButton icon={<ArrowDownIcon />} label="Receive" />
<IconButton icon={<PlusIcon />} label="Buy" />
<IconButton icon={<SwapIcon />} label="Swap" />
<IconButton icon={<ArrowsRepeatLeftRightIcon />} label="Swap" />
</Flex>
</Component>
);
Expand Down
6 changes: 3 additions & 3 deletions src/app/ui/components/account/account.card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { Box, Flex, styled } from 'leather-styles/jsx';

import {
ChevronDownIcon,
EyeIcon,
EyeSlashIcon,
Eye1Icon,
Eye1ClosedIcon,
Link,
Pressable,
SkeletonLoader,
Expand Down Expand Up @@ -79,7 +79,7 @@ export function AccountCard({
data-testid={SharedComponentsSelectors.AccountCardToggleHideBalanceBtn}
onClick={toggleHideBlance}
>
{hideBalance ? <EyeSlashIcon variant="small" /> : <EyeIcon variant="small" />}
{hideBalance ? <Eye1ClosedIcon variant="small" /> : <Eye1Icon variant="small" />}
</Pressable>
</Box>
</Flex>
Expand Down

0 comments on commit d1ba302

Please sign in to comment.