Skip to content

Commit

Permalink
chore: typo and icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Zephyruso authored and Zephyruso committed Aug 31, 2023
1 parent 03dda3c commit f12ed63
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pages/Connections.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { createEventSignal } from '@solid-primitives/event-listener'
import { createReconnectingWS } from '@solid-primitives/websocket'
import {
IconCircleX,
IconSortAscending,
IconSortDescending,
IconX,
} from '@tabler/icons-solidjs'
import {
ColumnDef,
Expand Down Expand Up @@ -84,20 +84,20 @@ export default () => {
header: () => (
<div class="flex h-full items-center">
<button
class="btn btn-circle btn-outline btn-xs"
class="btn btn-ghost btn-xs"
onClick={() => request.delete('connections')}
>
<IconX class="" />
<IconCircleX size="18" />
</button>
</div>
),
cell: ({ row }) => (
<div class="flex h-full items-center">
<button
class="btn btn-circle btn-outline btn-xs"
class="btn btn-ghost btn-xs"
onClick={() => onCloseConnection(row.id)}
>
<IconX />
<IconCircleX size="18" />
</button>
</div>
),
Expand Down

0 comments on commit f12ed63

Please sign in to comment.