@@ -15,14 +15,15 @@ import Kbd from "$lib/components/kbd.svelte"
15
15
import { sepoliaStore } from " $lib/wallet/evm"
16
16
import { cosmosStore } from " $lib/wallet/cosmos"
17
17
import { derived , writable } from " svelte/store"
18
- import SmileIcon from " virtual:icons/lucide/smile"
19
- import TableIcon from " virtual:icons/lucide/table"
20
- import BrainIcon from " virtual:icons/lucide/brain"
21
18
import Badge from " $lib/components/ui/badge/badge.svelte"
22
19
import * as Command from " $lib/components/ui/command/index.ts"
23
- import DollarSignIcon from " virtual:icons/lucide/badge-dollar-sign"
24
- import UnionIcon from " $lib/components/union-icons/index.svelte"
25
- import { mode } from " mode-watcher"
20
+ import FaucetIcon from " $lib/components/union-icons/mono/icon-faucet-mono.svelte"
21
+ import TransfersIcon from " $lib/components/union-icons/mono/icon-transfers-mono.svelte"
22
+ import UserTransfersIcon from " $lib/components/union-icons/mono/icon-usertransfers-mono.svelte"
23
+ import ChannelIcon from " $lib/components/union-icons/mono/icon-channel-mono.svelte"
24
+ import IbcConnectionsIcon from " $lib/components/union-icons/mono/icon-ibcconnections-mono.svelte"
25
+ import IbcChannelsIcon from " $lib/components/union-icons/mono/icon-ibcchannels-mono.svelte"
26
+ import HubbleStatusIcon from " $lib/components/union-icons/mono/icon-hubblestatus-mono.svelte"
26
27
27
28
let searchInput = writable (" " )
28
29
searchInput .update ($searchInput => $searchInput .replaceAll (" " , " " ))
@@ -206,7 +207,7 @@ const DISABLE_TAB_INDEX = -1
206
207
}}
207
208
>
208
209
209
- <UnionIcon theme = " mono " name = " faucet " class =" mr-2 size-5" />
210
+ <FaucetIcon class =" mr-2 size-5" />
210
211
<span >Get tokens from faucet</span >
211
212
{#if $page .route .id ?.startsWith (' /faucet' )}
212
213
<Badge
@@ -233,11 +234,7 @@ const DISABLE_TAB_INDEX = -1
233
234
commandDialogOpen = false
234
235
}}
235
236
>
236
- <UnionIcon
237
- theme =" mono"
238
- name =" transfers"
239
- class =" mr-2 size-5"
240
- />
237
+ <TransfersIcon class =" mr-2 size-5" />
241
238
<span >Transfer assets across chains</span >
242
239
{#if $page .route .id ?.startsWith (' /transfer' )}
243
240
<Badge
@@ -270,11 +267,7 @@ const DISABLE_TAB_INDEX = -1
270
267
commandDialogOpen = false
271
268
}}
272
269
>
273
- <UnionIcon
274
- theme =" mono"
275
- name =" usertransfers"
276
- class =" mr-2 size-5"
277
- />
270
+ <UserTransfersIcon class =" mr-2 size-5" />
278
271
<span >Your transfers</span >
279
272
{#if $page .route .id ?.startsWith (' /explorer/address' )}
280
273
<Badge
@@ -300,11 +293,7 @@ const DISABLE_TAB_INDEX = -1
300
293
commandDialogOpen = false
301
294
}}
302
295
>
303
- <UnionIcon
304
- theme =" mono"
305
- name =" channel"
306
- class =" mr-2 size-5"
307
- />
296
+ <ChannelIcon class =" mr-2 size-5" />
308
297
<span >All transfers</span >
309
298
{#if $page .route .id ?.startsWith (' /explorer/transfers' )}
310
299
<Badge
@@ -330,11 +319,7 @@ const DISABLE_TAB_INDEX = -1
330
319
commandDialogOpen = false
331
320
}}
332
321
>
333
- <UnionIcon
334
- theme =" mono"
335
- name =" ibcconnections"
336
- class =" mr-2 size-5"
337
- />
322
+ <IbcConnectionsIcon class =" mr-2 size-5" />
338
323
<span >IBC connections</span >
339
324
{#if $page .route .id ?.startsWith (' /explorer/connections' )}
340
325
<Badge
@@ -361,11 +346,7 @@ const DISABLE_TAB_INDEX = -1
361
346
commandDialogOpen = false
362
347
}}
363
348
>
364
- <UnionIcon
365
- theme =" mono"
366
- name =" ibcchannels"
367
- class =" mr-2 size-5"
368
- />
349
+ <IbcChannelsIcon class =" mr-2 size-5" />
369
350
<span >IBC channels</span >
370
351
{#if $page .route .id ?.startsWith (' /explorer/channels' )}
371
352
<Badge
@@ -392,11 +373,7 @@ const DISABLE_TAB_INDEX = -1
392
373
commandDialogOpen = false
393
374
}}
394
375
>
395
- <UnionIcon
396
- theme =" mono"
397
- name =" hubblestatus"
398
- class =" mr-2 size-5"
399
- />
376
+ <HubbleStatusIcon class =" mr-2 size-5" />
400
377
<span >Hubble index status</span >
401
378
{#if $page .route .id ?.startsWith (' /explorer/index-status' )}
402
379
<Badge
0 commit comments