mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
12 lines
379 B
TypeScript
12 lines
379 B
TypeScript
import { faSpinner } from "@fortawesome/free-solid-svg-icons";
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
|
|
export default () => (
|
|
<div className="flex flex-grow items-center justify-center h-20">
|
|
<FontAwesomeIcon
|
|
icon={faSpinner}
|
|
className="animate-spin-slow text-gray-600 flex-grow rounded-lg md:rounded-xl h-10 w-10"
|
|
/>
|
|
</div>
|
|
);
|