mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
import { BackIcon } from "@/components/Icon";
|
|
import { Loader } from "@/components/loading/Loader";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { useLocale } from "next-intl";
|
|
import { useRouter } from "next/navigation";
|
|
|
|
export default function NetworkChartLoading() {
|
|
const router = useRouter();
|
|
const locale = useLocale();
|
|
|
|
return (
|
|
<Card>
|
|
<CardHeader className="flex flex-col items-stretch space-y-0 border-b p-0 sm:flex-row">
|
|
<div className="flex flex-1 flex-col justify-center gap-1 px-6 py-5">
|
|
<CardTitle className="flex items-center gap-0.5 text-xl">
|
|
<div className="aspect-auto h-[20px] w-24 bg-muted"></div>
|
|
</CardTitle>
|
|
<div className="mt-[2px] aspect-auto h-[14px] w-32 bg-muted"></div>
|
|
</div>
|
|
<div className="hidden pr-4 pt-4 sm:block">
|
|
<Loader visible={true} />
|
|
</div>
|
|
</CardHeader>
|
|
<CardContent className="px-2 sm:p-6">
|
|
<div className="aspect-auto h-[250px] w-full"></div>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|