Components
An animated image-scanning loader that sweeps a highlight bar across a picture icon to indicate image analysis in progress.
Loading preview...
import { AnalyzingImage } from "@/components/ui/analyzing-image";
export default function AnalyzingImageDemo() {
return (
<div className="flex min-h-64 items-center justify-center bg-background text-foreground">
<AnalyzingImage className="size-16 text-foreground" />
</div>
);
}