import SimpleBar from "simplebar-react";
import "simplebar-react/dist/simplebar.min.css";
import Box from '@mui/material/Box'
import { SxProps } from '@mui/system';
import { styled } from '@mui/material/styles'
import { useMediaQuery } from "@mui/material";
const SimpleBarStyle = styled(SimpleBar)(() => ({
maxHeight: "100%",
}));
interface PropsType {
children: React.ReactElement | React.ReactNode;
sx: SxProps;
}
const Scrollbar = (props: PropsType) => {
const { children, sx, ...other } = props;
const lgDown = useMediaQuery((theme: any) => theme.breakpoints.down('lg'));
if (lgDown) {
return {children};
}
return (
{children}
);
};
export default Scrollbar;