import { FC } from 'react'; import { Box as MUIBox, BoxProps as MUIBoxProps } from '@mui/material'; import { BORDER_RADIUS, DIVIDER } from '../../lib/consts/DEFAULT_THEME'; type InnerPanelProps = MUIBoxProps; const InnerPanel: FC = ({ sx, ...muiBoxRestProps }) => ( ); export default InnerPanel;