17 lines
521 B
TypeScript
Raw Permalink Normal View History

2023-10-16 00:28:09 -04:00
import Container from "./components/Container";
import { Skeleton } from "@/components/ui/skeleton";
2023-10-20 15:26:55 -04:00
import { type KindCardProps } from "./";
2023-10-16 00:28:09 -04:00
export default function KindLoading() {
return (
2023-10-16 00:57:59 -04:00
<Container>
2023-10-16 11:08:11 -04:00
<div className="mb-3 space-y-2 text-muted-foreground">
2023-10-16 00:28:09 -04:00
<Skeleton className="mb-2 h-4 w-1/3 bg-muted" />
<Skeleton className="h-4 w-1/2 bg-muted" />
<Skeleton className="h-4 w-2/5 bg-muted" />
<Skeleton className="h-4 w-4/5 bg-muted" />
</div>
</Container>
);
}