mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-04 04:43:09 +00:00 
			
		
		
		
	Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			698 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			698 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import cn from '@/utils/classnames'
 | 
						|
 | 
						|
type FileImageRenderProps = {
 | 
						|
  imageUrl: string
 | 
						|
  className?: string
 | 
						|
  alt?: string
 | 
						|
  onLoad?: () => void
 | 
						|
  onError?: () => void
 | 
						|
  showDownloadAction?: boolean
 | 
						|
}
 | 
						|
const FileImageRender = ({
 | 
						|
  imageUrl,
 | 
						|
  className,
 | 
						|
  alt,
 | 
						|
  onLoad,
 | 
						|
  onError,
 | 
						|
  showDownloadAction,
 | 
						|
}: FileImageRenderProps) => {
 | 
						|
  return (
 | 
						|
    <div className={cn('border-[2px] border-effects-image-frame shadow-xs', className)}>
 | 
						|
      <img
 | 
						|
        className={cn('h-full w-full object-cover', showDownloadAction && 'cursor-pointer')}
 | 
						|
        alt={alt || 'Preview'}
 | 
						|
        onLoad={onLoad}
 | 
						|
        onError={onError}
 | 
						|
        src={imageUrl}
 | 
						|
      />
 | 
						|
    </div>
 | 
						|
  )
 | 
						|
}
 | 
						|
 | 
						|
export default FileImageRender
 |