cubetiq-muui/src/lib/box/index.tsx
2022-05-17 09:05:18 +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;