quivr/frontend/app/components/ui/Spinner.tsx
!MAD! e4217fe15f
Mad/UI improvements in /explore (#127)
* feature: delete file

* feature: consume /explore/file_name to view details of an uploaded document

* feature: optimistic update when deleting file

* feature: Loading state for /explore

* style: Exit animation

* style: responsive card
2023-05-23 08:15:13 +02:00

11 lines
225 B
TypeScript

import { FC } from "react";
import { FaSpinner } from "react-icons/fa";
interface SpinnerProps {}
const Spinner: FC<SpinnerProps> = ({}) => {
return <FaSpinner className="animate-spin m-5" />;
};
export default Spinner;