import * as React from "react" import clsx from "clsx" import { Container } from "./Container" export function SectionIntro({ title, eyebrow, children, smaller = false, invert = false, ...props }: Omit< React.ComponentPropsWithoutRef, "title" | "children" > & { title: string eyebrow?: string children?: React.ReactNode smaller?: boolean invert?: boolean }) { return (

{eyebrow && ( <> {eyebrow} - )} {title}

{children && (
{children}
)}
) }