26 lines
638 B
TypeScript
26 lines
638 B
TypeScript
|
import { cn } from "@/lib/utils"
|
||
|
import { ComponentProps } from "react"
|
||
|
export const LoadingSpinner = ({ className }: ComponentProps<"svg">) => {
|
||
|
return <svg
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
width="100"
|
||
|
height="100"
|
||
|
viewBox="0 0 24 24"
|
||
|
fill="none"
|
||
|
stroke="currentColor"
|
||
|
strokeWidth="2"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
className={cn("animate-spin", className)}
|
||
|
>
|
||
|
<path d="M21 12a9 9 0 1 1-6.219-8.56" />
|
||
|
</svg>
|
||
|
}
|
||
|
export default function Loading() {
|
||
|
return (
|
||
|
<><div className="size-full flex justify-center items-center z">
|
||
|
<LoadingSpinner />
|
||
|
</div></>
|
||
|
)
|
||
|
}
|