Image
Image is a React and Tailwind CSS media component from Prompt Kit, licensed MIT. Copy it and paste it into your project.
Prompt Kit
MIT
media
What it is
Image is a React and Tailwind CSS media component from Prompt Kit, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from Prompt Kit and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Image
"use client"
import { cn } from "@/lib/utils"
import { useEffect, useState, type ImgHTMLAttributes } from "react"
export type GeneratedImageLike = {
base64?: string
uint8Array?: Uint8Array
mediaType?: string
}
export type ImageProps = GeneratedImageLike &
Omit<ImgHTMLAttributes<HTMLImageElement>, "src"> & {
alt: string
}
function getImageSrc({
base64,
mediaType,
}: Pick<GeneratedImageLike, "base64" | "mediaType">) {
if (base64 && mediaType) {
return `data:${mediaType};base64,${base64}`
}
return undefined
}
export const Image = ({
base64,
uint8Array,
mediaType = "image/png",
className,
alt,
...props
}: ImageProps) => {
const [objectUrl, setObjectUrl] = useState<string | undefined>(undefined)
useEffect(() => {
if (uint8Array && mediaType) {
const blob = new Blob([uint8Array as BlobPart], { type: mediaType })
const url = URL.createObjectURL(blob)
setObjectUrl(url)
return () => {
URL.revokeObjectURL(url)
}
}
setObjectUrl(undefined)
return
}, [uint8Array, mediaType])
const base64Src = getImageSrc({ base64, mediaType })
const src = base64Src ?? objectUrl
if (!src) {
return (
<div
aria-label={alt}
role="img"
className={cn(
"h-auto max-w-full animate-pulse overflow-hidden rounded-md bg-gray-100 dark:bg-neutral-800",
className
)}
{...props}
/>
)
}
return (
<img
src={src}
alt={alt}
className={cn("h-auto max-w-full overflow-hidden rounded-md", className)}
role="img"
{...props}
/>
)
}