import React from "react"; import { Skeleton } from "@/components/ui/skeleton"; /** * ExplorerLoading * * Loading placeholder for Explorer lists. * Supports a grid and a table-like variant. * * @param {{ variant?: "grid"|"table", count?: number }} props */ export default function ExplorerLoading({ variant = "grid", count = 8 }) { const n = Number.isInteger(count) && count > 0 ? count : 8; if (variant === "table") { return (