mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-12 19:39:00 -05:00
10 lines
345 B
TypeScript
10 lines
345 B
TypeScript
import React from "react";
|
|
|
|
export function LoadingSpinner(props: React.ComponentPropsWithoutRef<"div">): React.JSX.Element {
|
|
return (
|
|
<div className="absolute inset-0 flex items-center justify-center" {...props}>
|
|
<div className="border-primary h-12 w-12 animate-spin rounded-full border-4 border-t-transparent" />
|
|
</div>
|
|
);
|
|
}
|