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