mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-20 18:01:39 +03:00
e4217fe15f
* 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
11 lines
225 B
TypeScript
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;
|