Used to show a placeholder while content is loading.
import { Skeleton } from '@/components/ui/skeleton'; export default function SkeletonDemo() { return ( <div className="flex items-center space-x-4"> <Skeleton className="size-16 rounded-full" /> <div className="space-y-2"> <Skeleton className="h-5 w-[225px]" /> <Skeleton className="h-4 w-[175px]" /> </div> </div> ); }
Part of ReUI — browse the full library on 21st.dev.