import Link from "next/link"; import Icon from "./Icon"; export interface Crumb { label: string; href?: string; } interface Props { /** Pass crumbs to show breadcrumbs (e.g. inner pages). Omit to show the team switcher (workspace). */ crumbs?: Crumb[]; balance?: string; } export default function Topbar({ crumbs, balance = "¥327.40" }: Props) { return (
{crumbs && crumbs.length > 0 ? ( ) : (
个人工作室
)}
余额 {balance}
); }