import React, { memo } from 'react'; import { useTheme } from '@mui/material/styles'; import Box, { BoxProps } from '@mui/material/Box'; import { BackgroundShape } from './background-shape'; /** * @description {UploadIllustration} - Renders the UploadIllustration component with the given props. * @param {BoxProps} other - The other props to pass to the Box component. * @return {JSX.Element} The rendered UploadIllustration component. */ const _UploadIllustration = ({ ...other }: BoxProps) => { const theme = useTheme(); const PRIMARY_MAIN = theme.palette.primary.main; const PRIMARY_DARK = theme.palette.primary.dark; const PRIMARY_DARKER = theme.palette.primary.darker; return ( ); }; /** * @description {UploadIllustration} - Renders the UploadIllustration component with the given props. * @param {BoxProps} other - The other props to pass to the Box component. * @return {JSX.Element} The rendered UploadIllustration component. */ export const UploadIllustration = memo(_UploadIllustration);