import { FC } from 'react'; import { Box } from '@mui/material'; import { BORDER_RADIUS, DIVIDER } from '../../lib/consts/DEFAULT_THEME'; const InnerPanelHeader: FC = ({ children }) => ( :first-child': { flexGrow: 1, }, '& > :not(:first-child, :last-child)': { marginRight: '.3em', }, }} > {children} {children} ); export default InnerPanelHeader;