import Button from "@mui/material/Button"; import LaunchOutlined from "@mui/icons-material/LaunchOutlined"; import type { FC } from "react"; import { useTheme } from "@emotion/react"; import { Stack } from "components/Stack/Stack"; export const Header: FC<{ title: string | JSX.Element; description?: string | JSX.Element; secondary?: boolean; docsHref?: string; }> = ({ title, description, docsHref, secondary }) => { const theme = useTheme(); return (

{title}

{description && ( {description} )}
{docsHref && ( )}
); };