mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-15 14:48:17 +08:00

Co-authored-by: crazywoola <427733928@qq.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.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('w-full h-full object-cover', showDownloadAction && 'cursor-pointer')}
|
|
alt={alt || 'Preview'}
|
|
onLoad={onLoad}
|
|
onError={onError}
|
|
src={imageUrl}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default FileImageRender
|