zipzy-icons 1.0.24 → 1.0.25

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.
Files changed (2) hide show
  1. package/README.md +21 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -56,17 +56,32 @@ export default function App() {
56
56
  );
57
57
  }
58
58
  ```
59
- Product icons like ZipZyPayments support independent color control:
59
+ Product icons like ZipZyDashboard support independent color control:
60
60
  ```tsx
61
- import { ZipZyPayments } from "zipzy-icons";
61
+ import { ZipZyDashboard } from "zipzy-icons";
62
62
 
63
63
  export default function App() {
64
64
  return (
65
- <ZipZyPayments
65
+ <ZipZyDashboard
66
66
  size={140}
67
- primaryColor="#1E40AF" // logo mark
67
+ primaryColor="#000000" // logo mark
68
+ secondaryColor="#000000" // ZipZy Dashboard text
69
+
70
+ />
71
+ );
72
+ }
73
+ ```
74
+ Product icons like ZipZyHrms support independent color control:
75
+ ```tsx
76
+ import { ZipZyHrms } from "zipzy-icons";
77
+
78
+ export default function App() {
79
+ return (
80
+ <ZipZyHrms
81
+ size={140}
82
+ primaryColor="#0DBEFF" // logo mark
68
83
  secondaryColor="#000000" // ZipZy text
69
- accentColor="#1E40AF" //Payments text
84
+ accentColor="#0DBEFF" // HRMS text
70
85
  />
71
86
  );
72
87
  }
@@ -91,6 +106,7 @@ export default function App() {
91
106
  ### Products
92
107
  - `ZipZyHrms` → HRMS product icon
93
108
  - `ZipZyPayments` → ZipZy Payments icon
109
+ - `ZipZyDashboard` → ZipZy Payments icon
94
110
 
95
111
  ---
96
112
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zipzy-icons",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "main": "dist/index.cjs",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",