cubetiq-muui/src/lib/components/box/index.tsx
2022-05-17 08:17:39 +07:00

11 lines
248 B
TypeScript

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