mirror of
https://github.com/MengMengCode/VoCat.git
synced 2026-08-20 06:43:42 +08:00
13 lines
414 B
TypeScript
13 lines
414 B
TypeScript
import { tl } from "../../lib/i18n";
|
|
import { Spinner } from "../ui";
|
|
|
|
// eSIM tab initial loading — centered spinner.
|
|
export function EsimLoadingHero() {
|
|
return (
|
|
<div className="ui-card flex items-center justify-center gap-3 p-16 text-gray-400 dark:text-gray-500">
|
|
<Spinner className="h-6 w-6 text-[#0ea5e9]" />
|
|
<span className="text-sm">{tl("正在加载 eSIM...")}</span>
|
|
</div>
|
|
);
|
|
}
|