import ResponsiveImage from '@/components/ResponsiveImage'; export default function EmailImage({ email, dark = false, full = false, ...props }) { const width = full ? email.widthFull : email.width; const height = full ? email.heightFull : email.height; return ( ); // return ( //
//
//
// ) }