11 |
12 |
13 | {title}
14 |
15 |
16 | {subtitle && {subtitle}}
17 |
18 |
19 | );
20 | };
21 |
--------------------------------------------------------------------------------
/src/components/shared/components/TOC/components/Heading.tsx:
--------------------------------------------------------------------------------
1 | import clsx from "clsx";
2 | import { PropsWithChildren } from "react";
3 |
4 | type HeadingProps = PropsWithChildren<{
5 | tag: "h2" | "h3" | "h4" | "h5" | "h6";
6 | }>;
7 |
8 | export const Heading: React.FC