import { type FC, type PropsWithChildren, memo } from 'react'; import { Box } from '@mui/material'; import type { BoxProps } from '@mui/material'; const ButtonRow: FC> = memo(({ children, ...rest }) => ( {children} )); export default ButtonRow;