"use client"; import Link from "next/link"; import { Icon } from "@/ds"; import { assetsStrings as s } from "./strings"; /** * Shared header for the account / manual-asset / lending detail pages: a * round back button + title, matching the row/typography language used * across the rest of the Assets feature. */ export function DetailHeader({ title }: { title: string }) { return (

{title}

); }