Skip to content

Commit

Permalink
fix(update-stacks-connect): fixed sign out icon
Browse files Browse the repository at this point in the history
  • Loading branch information
BLuEScioN committed Jun 24, 2024
1 parent 1897245 commit a06a5c9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/app/sandbox/layout/RightPanel.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { SignOut } from '@phosphor-icons/react';
import React from 'react';

import { Card } from '../../../common/components/Card';
import { useAppSelector } from '../../../common/state/hooks';
Expand Down Expand Up @@ -65,7 +64,12 @@ export function RightPanel() {
ml="8px"
>
<Tooltip placement="bottom" label="Sign out">
<IconButton size="20px" icon={<SignOut size={3.5} />} aria-label={'sign out'} />
<IconButton
height={5}
width={5}
icon={<Icon as={SignOut} size={3.5} />}
aria-label={'sign out'}
/>
</Tooltip>
</Box>
</Flex>
Expand Down

0 comments on commit a06a5c9

Please sign in to comment.