import { memo, forwardRef } from 'react'; // @mui import Box from '@mui/material/Box'; // import { StyledRootScrollbar, StyledScrollbar } from './styles'; import { ScrollbarProps } from './types'; // ---------------------------------------------------------------------- const Scrollbar = forwardRef(({ children, sx, ...other }, ref) => { const userAgent = typeof navigator === 'undefined' ? 'SSR' : navigator.userAgent; const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(userAgent); if (isMobile) { return ( {children} ); } return ( {children} ); }); export default memo(Scrollbar);