17.05.2026 funny

This commit is contained in:
2026-05-17 14:31:14 +03:00
parent ed5c7ea79d
commit 2d1c1654f9
34 changed files with 728 additions and 96 deletions

View File

@@ -1,10 +1,6 @@
import { NavLink } from 'react-router-dom'
import type { Chain } from '@features/wallet'
import btc from '@shared/assets/btc.svg'
import eth from '@shared/assets/eth.svg'
import sol from '@shared/assets/sol.svg'
import trx from '@shared/assets/trx.svg'
import bnb from '@shared/assets/bnb.svg'
import { COIN_ICONS } from '@shared/assets/coins'
import styles from './WalletChainTabs.module.css'
interface TabItem {
@@ -14,11 +10,11 @@ interface TabItem {
}
const TABS: TabItem[] = [
{ chain: 'BTC', label: 'BTC', icon: btc },
{ chain: 'ETH', label: 'ETH', icon: eth },
{ chain: 'SOL', label: 'SOL', icon: sol },
{ chain: 'TRX', label: 'TRX', icon: trx },
{ chain: 'BSC', label: 'BSC', icon: bnb },
{ chain: 'BTC', label: 'BTC', icon: COIN_ICONS.BTC },
{ chain: 'ETH', label: 'ETH', icon: COIN_ICONS.ETH },
{ chain: 'SOL', label: 'SOL', icon: COIN_ICONS.SOL },
{ chain: 'TRX', label: 'TRX', icon: COIN_ICONS.TRX },
{ chain: 'BSC', label: 'BSC', icon: COIN_ICONS.BNB },
]
export function WalletChainTabs() {