import { forwardRef } from 'react' import { Box, BoxProps } from '../Box' import { cx } from '../classnames' export interface ImageProps extends BoxProps { src: string alt: string } export let Image = forwardRef(function Image( props: ImageProps, ref, ) { return ( ) }) export default Image