import * as React from 'react'; import classNames from 'classnames'; import { ComponentClassNames } from '../shared'; import { BaseImageProps, ImageProps, ForwardRefPrimitive, Primitive, } from '../types'; import { View } from '../View'; const ImagePrimitive: Primitive = ( { className, ...rest }, ref ) => ( ); /** * [📖 Docs](https://ui.docs.amplify.aws/react/components/image) */ export const Image: ForwardRefPrimitive = React.forwardRef(ImagePrimitive); Image.displayName = 'Image';