import { Box, styled, Tooltip } from '@mui/material'; import { HelpOutline } from '@mui/icons-material'; import { FC } from 'react'; import { PageHeader } from '../../../common/PageHeader/PageHeader'; const StyledHelpOutline = styled(HelpOutline)(({ theme }) => ({ fontSize: theme.fontSizes.mainHeader, marginLeft: '0.3rem', color: theme.palette.action.active, })); const StyledHeaderHint = styled('div')(({ theme }) => ({ color: theme.palette.text.secondary, fontSize: theme.fontSizes.smallBody, })); export const ReviewChangesHeader: FC = () => ( Review your changes Make sure you are sending the right changes to be reviewed } /> );