import { memo } from 'react';
// @mui
import { useTheme } from '@mui/material/styles';
// ----------------------------------------------------------------------
function BackgroundShape() {
const theme = useTheme();
const PRIMARY_MAIN = theme.palette.primary.main;
return (
<>
>
);
}
export default memo(BackgroundShape);