@mozaic-ds/icons-angular 0.1.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,13 +41,13 @@ Learn more about the vision and guidelines by visiting the [main documentation w
|
|
|
41
41
|
You must first install the [npm package](https://www.npmjs.com/package/mozaic-icons-angular):
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
npm install mozaic-icons-angular
|
|
44
|
+
npm install @mozaic-ds/icons-angular
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
Or with **Yarn**:
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
yarn add mozaic-icons-angular
|
|
50
|
+
yarn add @mozaic-ds/icons-angular
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
## 📝 Usage
|
|
@@ -58,7 +58,7 @@ After the installation, you can start importing the icon component needed:
|
|
|
58
58
|
// In your component file
|
|
59
59
|
|
|
60
60
|
import { Component } from "@angular/core";
|
|
61
|
-
import { Wrench24 } from "mozaic-icons-angular";
|
|
61
|
+
import { Wrench24 } from "@mozaic-ds/icons-angular";
|
|
62
62
|
|
|
63
63
|
@Component({
|
|
64
64
|
selector: "app-example",
|