import { ReactNode } from "react"; import { Icon, Icons } from "@/components/Icon"; import { ArrowLink } from "@/components/text/ArrowLink"; interface SectionHeadingProps { icon?: Icons; title: string; children?: ReactNode; linkText?: string; onClick?: () => void; className?: string; } export function SectionHeading(props: SectionHeadingProps) { return (
{props.icon ? (