mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
import { Loader2 } from "lucide-react"
|
|
|
|
export default function AppLoading() {
|
|
return (
|
|
<div className="absolute inset-0 flex items-center justify-center h-full w-full">
|
|
<Loader2 className="w-10 h-10 animate-spin text-muted-foreground" />
|
|
</div>
|
|
)
|
|
}
|