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