Files
the-biergarten-app/archive/next-js-web-app/src/components/Comments/CommentLoadingCardBody.tsx
2026-04-20 02:30:25 -04:00

20 lines
667 B
TypeScript
Vendored

const CommentLoadingCardBody = () => {
return (
<div className="card-body h-52 fade-in-10">
<div className="flex animate-pulse space-x-4 slide-in-from-top">
<div className="flex-1 space-y-4 py-1">
<div className="h-4 w-3/4 rounded bg-base-100" />
<div className="space-y-2">
<div className="h-4 rounded bg-base-100" />
<div className="h-4 w-11/12 rounded bg-base-100" />
<div className="h-4 w-10/12 rounded bg-base-100" />
<div className="h-4 w-11/12 rounded bg-base-100" />
</div>
</div>
</div>
</div>
);
};
export default CommentLoadingCardBody;