import React from 'react'; import { Box, BoxProps, Grid, space } from '@blockstack/ui'; import { transition } from '@common/utils'; import { Img } from '@components/mdx/image'; const Image = ({ src, isHovered, size, ...rest }: BoxProps & { src?: string; isHovered?: boolean }) => ( ); export const HoverImage: React.FC = React.memo( ({ isHovered, src, ...props }) => ( ) );