import * as React from 'react' import { roundedClasses } from '../styles/classes' import type { ImageProps } from '../types' import { cn } from '../utils' const Image = React.forwardRef( ({ src, alt, width, height, rounded = 'none', className }, ref) => { return ( {alt} ) } ) Image.displayName = 'Image' export { Image }