import { DetailedHTMLProps, HTMLAttributes } from "react"; import { DocsLinkType } from "."; import Stack from "../../layout/Stack"; import TWUIDocsLink from "./TWUIDocsLink"; import { twMerge } from "tailwind-merge"; type Props = DetailedHTMLProps, HTMLElement> & { DocsLinks: DocsLinkType[]; before?: React.ReactNode; after?: React.ReactNode; autoExpandAll?: boolean; }; export default function TWUIDocsAside({ DocsLinks, after, before, autoExpandAll, ...props }: Props) { return ( ); }