mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-19 20:31:50 +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;
|