import { ReactNode } from "react"; import { Icon, Icons } from "@/components/Icon"; interface SectionHeadingProps { icon?: Icons; title: string; children?: ReactNode; className?: string; } export function SectionHeading(props: SectionHeadingProps) { return (

{props.icon ? ( ) : null} {props.title}

{props.children}
); }