// Custom Core Components import Table from './Table'; import Box from './Box'; // Custom Utilities import getScrollbarStyles from '../utilities/scrollbar'; // Custom Types import type { TableProps } from './Table'; const TableWrapper = (props: TableProps) => { const { children, sx, ...otherProps } = props; return ( ({ overflow: 'auto', ...getScrollbarStyles(palette), }) } > {children}
); }; export default TableWrapper;