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.
- package/README.md +21 -5
- 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
|
|
59
|
+
Product icons like ZipZyDashboard support independent color control:
|
|
60
60
|
```tsx
|
|
61
|
-
import {
|
|
61
|
+
import { ZipZyDashboard } from "zipzy-icons";
|
|
62
62
|
|
|
63
63
|
export default function App() {
|
|
64
64
|
return (
|
|
65
|
-
<
|
|
65
|
+
<ZipZyDashboard
|
|
66
66
|
size={140}
|
|
67
|
-
primaryColor="#
|
|
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="#
|
|
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
|
|