extrapolate loader
This commit is contained in:
parent
d3689ab4b2
commit
a89535c058
|
@ -1,7 +1,8 @@
|
||||||
import { cn } from "@/lib/utils"
|
import { cn } from "@/lib/utils"
|
||||||
import { ComponentProps } from "react"
|
import { ComponentProps } from "react"
|
||||||
export const LoadingSpinner = ({ className }: ComponentProps<"svg">) => {
|
export const LoadingSpinner = ({ className }: ComponentProps<"svg">) => {
|
||||||
return <svg
|
return <div className="size-full flex justify-center items-center z">
|
||||||
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
width="100"
|
width="100"
|
||||||
height="100"
|
height="100"
|
||||||
|
@ -15,11 +16,10 @@ export const LoadingSpinner = ({ className }: ComponentProps<"svg">) => {
|
||||||
>
|
>
|
||||||
<path d="M21 12a9 9 0 1 1-6.219-8.56" />
|
<path d="M21 12a9 9 0 1 1-6.219-8.56" />
|
||||||
</svg>
|
</svg>
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
export default function Loading() {
|
export default function Loading() {
|
||||||
return (
|
return (
|
||||||
<><div className="size-full flex justify-center items-center z">
|
|
||||||
<LoadingSpinner />
|
<LoadingSpinner />
|
||||||
</div></>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
import { LoadingSpinner } from "app/loading";
|
||||||
|
|
||||||
|
export default function Loading() {
|
||||||
|
return <LoadingSpinner />
|
||||||
|
}
|
Loading…
Reference in New Issue