import { Box, Typography } from "@mui/material"; import React from "react"; export interface SectionHeaderProps { headline: string; description?: string; variation?: "primary" | "secondary"; sx?: any; } const headerPrimary = { fontSize: "24px", fontWeight: 600, }; const headerSecondary = { fontSize: "20px", fontWeight: 400, }; const subheadPrimary = { fontSize: "14px", color: "#6E6E6E", }; const subheadSecondary = { fontSize: "12px", color: "#6E6E6E", }; export const SectionHeader: React.FC = ({ headline, description, variation = "primary", sx, }) => { return ( {headline} {description && ( {description} )} ); };