diff --git a/src/base/Box/Box.tsx b/src/base/Box/Box.tsx
index 84888704..a41ea187 100644
--- a/src/base/Box/Box.tsx
+++ b/src/base/Box/Box.tsx
@@ -1,7 +1,8 @@
import { Box as MuiBox, type BoxProps as MuiBoxProps } from '@mui/material';
+import React from 'react';
-export function Box(props: MuiBoxProps): JSX.Element {
- return ;
-}
+const Box = React.forwardRef((props, ref) => {
+ return ;
+});
export default Box;