mirror of
https://github.com/vas3k/TaxHacker.git
synced 2025-12-31 10:39:34 -06: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>
|
|
)
|
|
}
|