--- import type { TocItem } from "@/utils/generateToc"; interface Props { heading: TocItem; } const { heading: { children, depth, slug, text }, } = Astro.props; ---
  • 2 ? "ms-2" : ""}`}> {text} { !!children.length && (
      {children.map((subheading) => ( ))}
    ) }