23 lines
772 B
TypeScript
23 lines
772 B
TypeScript
'use client';
|
|
|
|
/* EngagementUserRowSkeleton — phase 07 (D-23).
|
|
* Purpose: Skeleton placeholder matching EngagementUserRow shape. Renders 5 instances on initial load.
|
|
* Props: none — purely presentational. */
|
|
|
|
import { Skeleton } from '@/components/ui/skeleton';
|
|
|
|
export function EngagementUserRowSkeleton() {
|
|
return (
|
|
<div className="px-4 py-3 space-y-2">
|
|
<div className="flex items-center gap-3">
|
|
<Skeleton className="h-8 w-8 rounded-full" />
|
|
<div className="flex-1 flex items-center justify-between gap-2">
|
|
<Skeleton className="h-4 w-32" />
|
|
<Skeleton className="h-4 w-12" />
|
|
</div>
|
|
</div>
|
|
<Skeleton className="h-3 w-24 ml-11" />
|
|
<Skeleton className="h-1.5 w-full mt-2" />
|
|
</div>
|
|
);
|
|
}
|