Skip to content

Commit

Permalink
feat: add loading component
Browse files Browse the repository at this point in the history
  • Loading branch information
moonbamijam committed Jan 22, 2024
1 parent 327ee17 commit 8e676bd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions components/SpinningLoading.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { ImSpinner2 } from "react-icons/im";

const SpinningLoading = () => {
return (
<div className="animate-spin">
<ImSpinner2 />
</div>
)
}

export default SpinningLoading

0 comments on commit 8e676bd

Please sign in to comment.