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