/** `<x-section-header>`: kicker, title, copy — each optional. */
export default function SectionHeader({
  kicker,
  title,
  copy,
}: {
  kicker?: string | null;
  title?: string | null;
  copy?: string | null;
}) {
  return (
    <>
      {kicker ? <p className="section-kicker">{kicker}</p> : null}
      {title ? <h2 className="section-title">{title}</h2> : null}
      {copy ? <p className="section-copy">{copy}</p> : null}
    </>
  );
}
