--- import config from "virtual:starlight/user-config"; const links = config.social || []; // Built-in SVG icons for social links const BUILTIN: Record = { "x.com": '', "code-branch": '', }; // CGit: Git リポジトリの fork/branch アイコン const CGIT_SVG = ''; --- { links.length > 0 && ( <> {links.map(({ label, href, icon }) => { const svg = label === "CGit" ? CGIT_SVG : (BUILTIN[String(icon)] || ""); return ( {label} {svg && ); })} ) }