cubetiq-muui/src/lib/box/index.tsx

11 lines
248 B
TypeScript
Raw Normal View History

2022-05-17 08:17:39 +07:00
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;