import { cn } from "@/lib/utils"; import { Icons } from "../shared/icons"; interface DocsPageHeaderProps extends React.HTMLAttributes { heading: string; text?: string; } export function DocsPageHeader({ heading, text, className, ...props }: DocsPageHeaderProps) { return ( <>
Docs
{heading}

{heading}

{text && (

{text}

)}
); }