This commit is contained in:
2026-06-01 23:28:57 +03:00
parent 895bec2a50
commit b86f3209f5
22 changed files with 1036 additions and 269 deletions

View File

@@ -17,9 +17,25 @@ const TABS: TabItem[] = [
{ chain: 'BSC', label: 'BSC', icon: COIN_ICONS.BNB },
]
const allCoinsIcon = (
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
<ellipse cx="12" cy="6" rx="8" ry="3" />
<path d="M4 6v6c0 1.66 3.58 3 8 3s8-1.34 8-3V6" />
<path d="M4 12v6c0 1.66 3.58 3 8 3s8-1.34 8-3v-6" />
</svg>
)
export function WalletChainTabs() {
return (
<div className={styles.tabs}>
<NavLink
to="/wallet"
end
className={({ isActive }) => `${styles.tab} ${isActive ? styles.active : ''}`}
>
<span className={styles.icon}>{allCoinsIcon}</span>
<span>Все монеты</span>
</NavLink>
{TABS.map((t) => (
<NavLink
key={t.chain}