import React from "react"; import { Sparkles } from "lucide-react"; import { AspectRatio } from "./ui/aspect-ratio"; /** Shimmer placeholder while an image is being generated. */ export default function ImageGeneratingPlaceholder({ prompt, className = "" }) { return (

Création de l'image…

{prompt ? (

{prompt}

) : null}
); }