A loading placeholder for a chat conversation, showing alternating inbound and outbound message bubbles with avatars.
import { Skeleton12 } from "@/components/ui/skeleton-12"; export default function Default() { return ( <div className="flex min-h-[400px] w-full items-center justify-center bg-background p-8"> <div className="w-full max-w-sm rounded-xl border border-border bg-card p-4 text-card-foreground"> <Skeleton12 /> </div> </div> ); }