From 8e676bd830fcee26ee7af73add60c3bc23c33109 Mon Sep 17 00:00:00 2001 From: MoonbamiOfficial <141120384+MoonbamiOfficial@users.noreply.github.com> Date: Mon, 22 Jan 2024 21:13:43 +0800 Subject: [PATCH] feat: add loading component --- components/SpinningLoading.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 components/SpinningLoading.tsx diff --git a/components/SpinningLoading.tsx b/components/SpinningLoading.tsx new file mode 100644 index 0000000..8d8c44f --- /dev/null +++ b/components/SpinningLoading.tsx @@ -0,0 +1,11 @@ +import { ImSpinner2 } from "react-icons/im"; + +const SpinningLoading = () => { + return ( +
+ +
+ ) +} + +export default SpinningLoading \ No newline at end of file