import { HTMLAttributes } from "react" import { cn } from "@/lib/utils" type SectionHeaderProps = HTMLAttributes & { children: React.ReactNode description?: string } export const SectionHeader = ({ description, children, className, ...props }: SectionHeaderProps) => { return (

{children}

{description &&

{description}

}
) }