import MuiBox, { BoxProps as MuiBoxProps } from "@mui/material/Box"; import React from "react"; export interface BoxProps extends MuiBoxProps {} const Box: React.FC = (props) => { return ; }; export default Box;