import { Paper, styled } from '@mui/material'; import { usePageTitle } from 'hooks/usePageTitle'; import type { ReactNode } from 'react'; import { ConditionallyRender } from '../ConditionallyRender/ConditionallyRender'; const StyledMainHeader = styled(Paper)(({ theme }) => ({ borderRadius: theme.shape.borderRadiusLarge, padding: theme.spacing(2.5, 4), boxShadow: 'none', marginBottom: theme.spacing(2), fontSize: theme.fontSizes.smallBody, })); const StyledTitleHeader = styled('div')(({ theme }) => ({ display: 'flex', alignItems: 'center', justifyContent: 'space-between', })); const StyledTitle = styled('h1')(({ theme }) => ({ fontSize: theme.fontSizes.mainHeader, })); const StyledActions = styled('div')(({ theme }) => ({ display: 'flex', })); const StyledDescription = styled('span')(({ theme }) => ({ color: theme.palette.text.secondary, fontSize: theme.fontSizes.smallBody, marginLeft: theme.spacing(1), })); interface IMainHeaderProps { title?: string; description?: string; actions?: ReactNode; } export const MainHeader = ({ title, description, actions, }: IMainHeaderProps) => { usePageTitle(title); return ( {title} {actions} Description: {description} } /> ); };