import { Typography, type TypographyProps } from '@mui/material'; import type { ReactNode } from 'react'; interface Props { children: ReactNode; } const HeaderLabel = ({ children, className }: Props & Pick): JSX.Element => { return ( {children} ); }; export default HeaderLabel;