Skip to content

Commit

Permalink
fix(modals): close icon button style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kunish committed Sep 22, 2023
1 parent 5ef8410 commit 7f8d71c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions src/components/ConnectionsSettingsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,8 @@ export const ConnectionsSettingsModal = (props: {

modal?.close()
}}
>
<IconX size={20} />
</Button>
icon={<IconX size={20} />}
/>
</div>

<div>
Expand Down
5 changes: 2 additions & 3 deletions src/components/LogsSettingsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@ export const LogsSettingsModal = () => {

modal?.close()
}}
>
<IconX size={20} />
</Button>
icon={<IconX size={20} />}
/>
</div>

<div>
Expand Down
5 changes: 2 additions & 3 deletions src/components/ProxiesSettingsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ export const ProxiesSettingsModal = () => {

modal?.close()
}}
>
<IconX size={20} />
</Button>
icon={<IconX size={20} />}
/>
</div>

<div>
Expand Down

0 comments on commit 7f8d71c

Please sign in to comment.