'use client'; import PropTypes from 'prop-types'; // @mui import { useTheme } from '@mui/material/styles'; import Box from '@mui/material/Box'; /*************************** IMAGE - DRIBBBLE ***************************/ export default function Dribbble({ imageSize }) { const theme = useTheme(); return ( ); } Dribbble.propTypes = { imageSize: PropTypes.object };