import type { ComponentProps } from "react"; import { Skeleton } from "@/components/ui/skeleton"; import { cn } from "@/lib/utils"; export function DashboardPanelSkeleton({ className, ...props }: ComponentProps) { return ( ); }