import { Box, type BoxProps } from "@mui/material"; export const ContentLayout = ({ children, component: Component = "div", className, sx, ...rest }: BoxProps) => { return ( {children} ); };