import { DepotFilledIcon, DepotIcon, HomeFilledIcon, HomeIcon, NwcFilledIcon, NwcIcon, RelayFilledIcon, RelayIcon, } from "@lume/icons"; import { cn } from "@lume/utils"; import { NavLink } from "react-router-dom"; import { ActiveAccount } from "./account/active"; export function Navigation() { return (
{({ isActive }) => ( <>
{isActive ? ( ) : ( )}
Home
)}
{({ isActive }) => ( <>
{isActive ? ( ) : ( )}
Relays
)}
{({ isActive }) => ( <>
{isActive ? ( ) : ( )}
Depot
)}
{({ isActive }) => ( <>
{isActive ? ( ) : ( )}
Wallet
)}
); }