A lightweight and customizable set of loading spinners for React, perfect for enhancing UI feedback in your applications.
- 📦 Four unique spinner types
- 🎨 Easily customizable via props
- 💡 Lightweight and dependency-free (except React)
Components included:
LoadingSpinner
DotSpinner
BoxRotate
Loading
npm install react-loading-spinner-testing
## 🚀 Usage
jsx
Copy
Edit
import {
LoadingSpinner,
DotSpinner,
BoxRotate,
Loading
} from 'react-loading-spinner-testing';
function App() {
return (
<>
<LoadingSpinner size={40} color="blue" />
<DotSpinner dotColor="red" numberOfDots={5} dotSize={10} />
<BoxRotate />
<Loading size={25} color="#00ffcc" />
</>
);
}