import { Box, BoxProps } from "@mui/material"; import React from "react"; interface CenterProps extends BoxProps { children: React.ReactNode; } export const Center: React.FC = ({ children, ...props }) => { return ( {children} ); };