import React, { memo } from 'react'; import { useTheme } from '@mui/material/styles'; /** * @description Renders the background shape component. * @return {JSX.Element} The rendered background shape component. */ const _BackgroundShape = () => { const theme = useTheme(); const PRIMARY_MAIN = theme.palette.primary.main; return ( <> ); }; export const BackgroundShape = memo(_BackgroundShape);