Skip to content

Commit

Permalink
docs: add README
Browse files Browse the repository at this point in the history
  • Loading branch information
AshGw committed Jun 11, 2024
1 parent a0f849e commit eb921c7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
### Installation

```
npm i loading-points
```

### Usage

```tsx
import Loading from 'loading-points';

function LoadingScreen() {
return (
<div className="flex items-center justify-center h-screen">
<Loading glowColor='rgb(155, 46, 199)' circleSize='8px' />
</div>
);
}

export default LoadingScreen;
```

### License
MIT

0 comments on commit eb921c7

Please sign in to comment.