Skip to content

Commit 029992e

Browse files
committed
readme import path fix
1 parent d299074 commit 029992e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ npm install react-loading-indicators
3333
```
3434

3535
> #### Heads Up 📢
36-
36+
>
3737
> The following components were renamed:
3838
>
3939
> - ~~`<CircularProgress />`~~ - `<OrbitProgress />`
@@ -51,7 +51,7 @@ import React from "react";
5151
import { Atom } from "react-loading-indicators";
5252
/*
5353
| OR directly pull it 😎
54-
| import Atom from "react-loading-indicators/Atom";
54+
| import Atom from "react-loading-indicators/dist/Atom";
5555
*/
5656

5757
const Loading = () => <Atom text="Loading..." />;
@@ -79,7 +79,7 @@ You can directly include a loading indicator you want to ensure it is the only t
7979

8080
```jsx
8181
import React from "react";
82-
import OrbitProgress from "react-loading-indicators/OrbitProgress";
82+
import OrbitProgress from "react-loading-indicators/dist/OrbitProgress";
8383

8484
const Loading = () => (
8585
<OrbitProgress variant="track-disc" color="crimson" size="small" />

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-loading-indicators",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Simply elegant light-weight loading indicators for react applications",
55
"scripts": {
66
"prebuild": "rm -rf dist",

0 commit comments

Comments
 (0)