mirror of
https://github.com/henrygd/beszel.git
synced 2025-12-17 02:36:17 +01:00
10 lines
242 B
Go
10 lines
242 B
Go
import { LoaderCircleIcon } from 'lucide-react'
|
|
|
|
export default function () {
|
|
return (
|
|
<div className="grid place-content-center h-full absolute inset-0">
|
|
<LoaderCircleIcon className="animate-spin h-10 w-10 opacity-60" />
|
|
</div>
|
|
)
|
|
}
|