import type { TableOfContents } from 'fumadocs-core/server'; import { ArrowRightIcon } from 'lucide-react'; import Link from 'next/link'; interface Props { toc: TableOfContents; } export const Toc: React.FC = ({ toc }) => { return ( ); };