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