vadivam-preact 0.0.23 → 0.0.26

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 (52) hide show
  1. package/README.md +1 -1
  2. package/dist/dynamicIconImports.d.ts +10 -0
  3. package/dist/dynamicIconImports.js +10 -0
  4. package/dist/icons/arrow-big-down-dash.js +1 -1
  5. package/dist/icons/arrow-big-down.js +1 -1
  6. package/dist/icons/arrow-big-left-dash.js +1 -1
  7. package/dist/icons/arrow-big-left.js +1 -1
  8. package/dist/icons/arrow-big-right-dash.js +1 -1
  9. package/dist/icons/arrow-big-right.js +1 -1
  10. package/dist/icons/arrow-big-up-dash.js +1 -1
  11. package/dist/icons/arrow-big-up.js +1 -1
  12. package/dist/icons/arrow-down-from-line.js +1 -1
  13. package/dist/icons/arrow-down-to-line.js +1 -1
  14. package/dist/icons/arrow-left-from-line.js +1 -1
  15. package/dist/icons/arrow-left-to-line.js +1 -1
  16. package/dist/icons/arrow-right-from-line.js +1 -1
  17. package/dist/icons/arrow-right-to-line.js +1 -1
  18. package/dist/icons/arrow-up-from-line.js +1 -1
  19. package/dist/icons/arrow-up-to-line.js +1 -1
  20. package/dist/icons/brain.d.ts +4 -0
  21. package/dist/icons/brain.js +3 -0
  22. package/dist/icons/chevrons-up-down.d.ts +4 -0
  23. package/dist/icons/chevrons-up-down.js +3 -0
  24. package/dist/icons/cpu.d.ts +4 -0
  25. package/dist/icons/cpu.js +3 -0
  26. package/dist/icons/download.js +1 -1
  27. package/dist/icons/git-branch-minus.d.ts +4 -0
  28. package/dist/icons/git-branch-minus.js +3 -0
  29. package/dist/icons/git-branch-plus.d.ts +4 -0
  30. package/dist/icons/git-branch-plus.js +3 -0
  31. package/dist/icons/git-branch.d.ts +4 -0
  32. package/dist/icons/git-branch.js +3 -0
  33. package/dist/icons/grip-vertical.js +1 -1
  34. package/dist/icons/hard-drive.d.ts +4 -0
  35. package/dist/icons/hard-drive.js +3 -0
  36. package/dist/icons/history.d.ts +4 -0
  37. package/dist/icons/history.js +3 -0
  38. package/dist/icons/index.d.ts +10 -0
  39. package/dist/icons/index.js +10 -0
  40. package/dist/icons/log-out.js +1 -1
  41. package/dist/icons/palette.d.ts +4 -0
  42. package/dist/icons/palette.js +3 -0
  43. package/dist/icons/send.js +1 -1
  44. package/dist/icons/trending-up.d.ts +4 -0
  45. package/dist/icons/trending-up.js +3 -0
  46. package/dist/icons/upload.js +1 -1
  47. package/dist/icons.d.ts +10 -0
  48. package/dist/icons.js +20 -0
  49. package/dist/index.d.ts +10 -0
  50. package/dist/index.js +10 -0
  51. package/dist/types.d.ts +1 -1
  52. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,7 @@ Pixel-perfect 24px outline icon components for Preact with tree-shakeable import
6
6
  [![downloads](https://img.shields.io/npm/dw/vadivam-preact?style=flat-square&color=666)](https://www.npmjs.com/package/vadivam-preact)
7
7
  [![license](https://img.shields.io/npm/l/vadivam-preact?style=flat-square&color=111)](https://github.com/praveenjuge/vadivam/blob/main/LICENSE)
8
8
 
9
- ![All Vadivam icons](https://raw.githubusercontent.com/praveenjuge/vadivam/main/apps/docs/public/preview.png?v=0.0.23)
9
+ ![All Vadivam icons](https://raw.githubusercontent.com/praveenjuge/vadivam/main/apps/docs/public/preview.png?v=0.0.26)
10
10
 
11
11
  ```sh
12
12
  npm install vadivam-preact
@@ -170,16 +170,19 @@ declare const dynamicIconImports: {
170
170
  readonly "between-vertical-start": () => Promise<DynamicIconModule>;
171
171
  readonly "book-open": () => Promise<DynamicIconModule>;
172
172
  readonly "bot": () => Promise<DynamicIconModule>;
173
+ readonly "brain": () => Promise<DynamicIconModule>;
173
174
  readonly "calendar": () => Promise<DynamicIconModule>;
174
175
  readonly "check": () => Promise<DynamicIconModule>;
175
176
  readonly "chevron-down": () => Promise<DynamicIconModule>;
176
177
  readonly "chevron-left": () => Promise<DynamicIconModule>;
177
178
  readonly "chevron-right": () => Promise<DynamicIconModule>;
178
179
  readonly "chevron-up": () => Promise<DynamicIconModule>;
180
+ readonly "chevrons-up-down": () => Promise<DynamicIconModule>;
179
181
  readonly "circle": () => Promise<DynamicIconModule>;
180
182
  readonly "clock": () => Promise<DynamicIconModule>;
181
183
  readonly "code": () => Promise<DynamicIconModule>;
182
184
  readonly "copy": () => Promise<DynamicIconModule>;
185
+ readonly "cpu": () => Promise<DynamicIconModule>;
183
186
  readonly "database": () => Promise<DynamicIconModule>;
184
187
  readonly "download": () => Promise<DynamicIconModule>;
185
188
  readonly "external-link": () => Promise<DynamicIconModule>;
@@ -189,10 +192,15 @@ declare const dynamicIconImports: {
189
192
  readonly "file": () => Promise<DynamicIconModule>;
190
193
  readonly "folder-open": () => Promise<DynamicIconModule>;
191
194
  readonly "folder": () => Promise<DynamicIconModule>;
195
+ readonly "git-branch-minus": () => Promise<DynamicIconModule>;
196
+ readonly "git-branch-plus": () => Promise<DynamicIconModule>;
197
+ readonly "git-branch": () => Promise<DynamicIconModule>;
192
198
  readonly "globe": () => Promise<DynamicIconModule>;
193
199
  readonly "grip-horizontal": () => Promise<DynamicIconModule>;
194
200
  readonly "grip-vertical": () => Promise<DynamicIconModule>;
201
+ readonly "hard-drive": () => Promise<DynamicIconModule>;
195
202
  readonly "heart": () => Promise<DynamicIconModule>;
203
+ readonly "history": () => Promise<DynamicIconModule>;
196
204
  readonly "image": () => Promise<DynamicIconModule>;
197
205
  readonly "info": () => Promise<DynamicIconModule>;
198
206
  readonly "layers": () => Promise<DynamicIconModule>;
@@ -206,6 +214,7 @@ declare const dynamicIconImports: {
206
214
  readonly "minus": () => Promise<DynamicIconModule>;
207
215
  readonly "monitor": () => Promise<DynamicIconModule>;
208
216
  readonly "moon": () => Promise<DynamicIconModule>;
217
+ readonly "palette": () => Promise<DynamicIconModule>;
209
218
  readonly "pencil": () => Promise<DynamicIconModule>;
210
219
  readonly "play": () => Promise<DynamicIconModule>;
211
220
  readonly "plus": () => Promise<DynamicIconModule>;
@@ -226,6 +235,7 @@ declare const dynamicIconImports: {
226
235
  readonly "sun": () => Promise<DynamicIconModule>;
227
236
  readonly "terminal": () => Promise<DynamicIconModule>;
228
237
  readonly "trash-2": () => Promise<DynamicIconModule>;
238
+ readonly "trending-up": () => Promise<DynamicIconModule>;
229
239
  readonly "upload": () => Promise<DynamicIconModule>;
230
240
  readonly "user": () => Promise<DynamicIconModule>;
231
241
  readonly "users": () => Promise<DynamicIconModule>;
@@ -168,16 +168,19 @@ const dynamicIconImports = {
168
168
  "between-vertical-start": () => import("./icons/between-vertical-start.js"),
169
169
  "book-open": () => import("./icons/book-open.js"),
170
170
  "bot": () => import("./icons/bot.js"),
171
+ "brain": () => import("./icons/brain.js"),
171
172
  "calendar": () => import("./icons/calendar.js"),
172
173
  "check": () => import("./icons/check.js"),
173
174
  "chevron-down": () => import("./icons/chevron-down.js"),
174
175
  "chevron-left": () => import("./icons/chevron-left.js"),
175
176
  "chevron-right": () => import("./icons/chevron-right.js"),
176
177
  "chevron-up": () => import("./icons/chevron-up.js"),
178
+ "chevrons-up-down": () => import("./icons/chevrons-up-down.js"),
177
179
  "circle": () => import("./icons/circle.js"),
178
180
  "clock": () => import("./icons/clock.js"),
179
181
  "code": () => import("./icons/code.js"),
180
182
  "copy": () => import("./icons/copy.js"),
183
+ "cpu": () => import("./icons/cpu.js"),
181
184
  "database": () => import("./icons/database.js"),
182
185
  "download": () => import("./icons/download.js"),
183
186
  "external-link": () => import("./icons/external-link.js"),
@@ -187,10 +190,15 @@ const dynamicIconImports = {
187
190
  "file": () => import("./icons/file.js"),
188
191
  "folder-open": () => import("./icons/folder-open.js"),
189
192
  "folder": () => import("./icons/folder.js"),
193
+ "git-branch-minus": () => import("./icons/git-branch-minus.js"),
194
+ "git-branch-plus": () => import("./icons/git-branch-plus.js"),
195
+ "git-branch": () => import("./icons/git-branch.js"),
190
196
  "globe": () => import("./icons/globe.js"),
191
197
  "grip-horizontal": () => import("./icons/grip-horizontal.js"),
192
198
  "grip-vertical": () => import("./icons/grip-vertical.js"),
199
+ "hard-drive": () => import("./icons/hard-drive.js"),
193
200
  "heart": () => import("./icons/heart.js"),
201
+ "history": () => import("./icons/history.js"),
194
202
  "image": () => import("./icons/image.js"),
195
203
  "info": () => import("./icons/info.js"),
196
204
  "layers": () => import("./icons/layers.js"),
@@ -204,6 +212,7 @@ const dynamicIconImports = {
204
212
  "minus": () => import("./icons/minus.js"),
205
213
  "monitor": () => import("./icons/monitor.js"),
206
214
  "moon": () => import("./icons/moon.js"),
215
+ "palette": () => import("./icons/palette.js"),
207
216
  "pencil": () => import("./icons/pencil.js"),
208
217
  "play": () => import("./icons/play.js"),
209
218
  "plus": () => import("./icons/plus.js"),
@@ -224,6 +233,7 @@ const dynamicIconImports = {
224
233
  "sun": () => import("./icons/sun.js"),
225
234
  "terminal": () => import("./icons/terminal.js"),
226
235
  "trash-2": () => import("./icons/trash-2.js"),
236
+ "trending-up": () => import("./icons/trending-up.js"),
227
237
  "upload": () => import("./icons/upload.js"),
228
238
  "user": () => import("./icons/user.js"),
229
239
  "users": () => import("./icons/users.js"),
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M4.514 13.394c-.927 0-1.366 1.17-.677 1.805l6.809 6.27c.77.708 1.938.708 2.708 0l6.809-6.27c.69-.635.25-1.806-.677-1.806h-3.437a1.023 1.023 0 0 1-1.012-1.035V8.072c0-1.145-.906-2.072-2.025-2.072h-2.024c-1.119 0-2.025.927-2.025 2.072v4.286c0 .572-.453 1.035-1.013 1.035zM15 2H9"}]];
2
+ export const __iconNode = [["path",{"d":"M17 2H7M4.514 13.394c-.927 0-1.366 1.17-.677 1.805C7.097 16.74 9.926 19.038 12 22c2.074-2.962 4.902-5.26 8.163-6.8.69-.636.25-1.806-.677-1.806h-3.437a1.024 1.024 0 0 1-1.012-1.036V8.072c0-1.145-.906-2.072-2.025-2.072h-2.024c-1.119 0-2.025.927-2.025 2.072v4.286c0 .572-.453 1.035-1.013 1.035z"}]];
3
3
  export default createVadivamIcon("arrow-big-down-dash", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M4.514 13.394c-.927 0-1.366 1.17-.677 1.805l6.809 6.27c.77.708 1.938.708 2.708 0l6.809-6.27c.69-.635.25-1.806-.677-1.806h-3.437a1.023 1.023 0 0 1-1.012-1.035V4.072c0-1.145-.906-2.072-2.025-2.072h-2.024c-1.119 0-2.025.927-2.025 2.072v8.286c0 .572-.453 1.035-1.013 1.035z"}]];
2
+ export const __iconNode = [["path",{"d":"M4.514 13.394c-.927 0-1.366 1.17-.677 1.805C7.097 16.74 9.926 19.038 12 22c2.074-2.962 4.902-5.26 8.163-6.8.69-.636.25-1.806-.677-1.806h-3.437a1.024 1.024 0 0 1-1.012-1.036V4.072c0-1.145-.906-2.072-2.025-2.072h-2.024c-1.119 0-2.025.927-2.025 2.072v8.286c0 .572-.453 1.035-1.013 1.035z"}]];
3
3
  export default createVadivamIcon("arrow-big-down", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M10.607 4.514c0-.927-1.171-1.366-1.806-.677l-6.27 6.809a1.99 1.99 0 0 0 0 2.708l6.27 6.809c.635.69 1.806.25 1.806-.677v-3.437c0-.559.463-1.012 1.035-1.012h4.287c1.144 0 2.071-.906 2.071-2.025v-2.024c0-1.119-.927-2.025-2.072-2.025h-4.286a1.024 1.024 0 0 1-1.035-1.013zM22 15V9"}]];
2
+ export const __iconNode = [["path",{"d":"M22 17V7M10.607 4.514c0-.927-1.171-1.366-1.806-.677C7.26 7.097 4.962 9.926 2 12c2.962 2.074 5.26 4.902 6.8 8.163.636.69 1.806.25 1.806-.677v-3.437c0-.559.464-1.012 1.036-1.012h4.287c1.144 0 2.071-.906 2.071-2.025v-2.024c0-1.119-.927-2.025-2.072-2.025h-4.286a1.024 1.024 0 0 1-1.035-1.013z"}]];
3
3
  export default createVadivamIcon("arrow-big-left-dash", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M10.607 4.514c0-.927-1.171-1.366-1.806-.677l-6.27 6.809a1.99 1.99 0 0 0 0 2.708l6.27 6.809c.635.69 1.806.25 1.806-.677v-3.437c0-.559.463-1.012 1.035-1.012h8.287c1.144 0 2.071-.906 2.071-2.025v-2.024c0-1.119-.927-2.025-2.072-2.025h-8.286a1.024 1.024 0 0 1-1.035-1.013z"}]];
2
+ export const __iconNode = [["path",{"d":"M10.607 4.514c0-.927-1.171-1.366-1.806-.677C7.26 7.097 4.962 9.926 2 12c2.962 2.074 5.26 4.902 6.8 8.163.636.69 1.806.25 1.806-.677v-3.437c0-.559.464-1.012 1.036-1.012h8.287c1.144 0 2.071-.906 2.071-2.025v-2.024c0-1.119-.927-2.025-2.072-2.025h-8.286a1.024 1.024 0 0 1-1.035-1.013z"}]];
3
3
  export default createVadivamIcon("arrow-big-left", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M13.394 19.486c0 .927 1.17 1.366 1.805.677l6.27-6.808a1.99 1.99 0 0 0 0-2.71l-6.27-6.808c-.635-.69-1.806-.25-1.806.677V7.95c0 .56-.463 1.013-1.035 1.013H8.072C6.927 8.963 6 9.869 6 10.988v2.024c0 1.119.927 2.025 2.072 2.025h4.286c.572 0 1.035.453 1.035 1.012zM2 9v6"}]];
2
+ export const __iconNode = [["path",{"d":"M2 7v10m11.394 2.486c0 .927 1.17 1.366 1.805.677C16.74 16.903 19.038 14.074 22 12c-2.962-2.074-5.26-4.902-6.8-8.163-.636-.69-1.806-.25-1.806.677V7.95c0 .56-.464 1.013-1.036 1.013H8.072C6.927 8.963 6 9.869 6 10.988v2.024c0 1.119.927 2.025 2.072 2.025h4.286c.572 0 1.035.453 1.035 1.012z"}]];
3
3
  export default createVadivamIcon("arrow-big-right-dash", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M13.394 19.486c0 .927 1.17 1.366 1.805.677l6.27-6.808a1.99 1.99 0 0 0 0-2.71l-6.27-6.808c-.635-.69-1.806-.25-1.806.677V7.95c0 .56-.463 1.013-1.035 1.013H4.072C2.927 8.963 2 9.869 2 10.988v2.024c0 1.119.927 2.025 2.072 2.025h8.286c.572 0 1.035.453 1.035 1.012z"}]];
2
+ export const __iconNode = [["path",{"d":"M13.394 19.486c0 .927 1.17 1.366 1.805.677C16.74 16.903 19.038 14.074 22 12c-2.962-2.074-5.26-4.902-6.8-8.163-.636-.69-1.806-.25-1.806.677V7.95c0 .56-.464 1.013-1.036 1.013H4.072C2.927 8.963 2 9.869 2 10.988v2.024c0 1.119.927 2.025 2.072 2.025h8.286c.572 0 1.035.453 1.035 1.012z"}]];
3
3
  export default createVadivamIcon("arrow-big-right", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M19.486 10.607c.927 0 1.366-1.171.677-1.806l-6.808-6.27a1.99 1.99 0 0 0-2.71 0l-6.808 6.27c-.69.635-.25 1.806.677 1.806H7.95c.56 0 1.013.463 1.013 1.035v4.287c0 1.144.906 2.071 2.025 2.071h2.024c1.119 0 2.025-.927 2.025-2.072v-4.286c0-.572.453-1.035 1.012-1.035zM9 22h6"}]];
2
+ export const __iconNode = [["path",{"d":"M7 22h10m2.486-11.393c.927 0 1.366-1.171.677-1.806C16.903 7.26 14.074 4.962 12 2 9.926 4.962 7.098 7.26 3.837 8.8c-.69.636-.25 1.806.677 1.806H7.95c.56 0 1.013.464 1.013 1.036v4.287c0 1.144.906 2.071 2.025 2.071h2.024c1.119 0 2.025-.927 2.025-2.072v-4.286c0-.572.453-1.035 1.012-1.035z"}]];
3
3
  export default createVadivamIcon("arrow-big-up-dash", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M19.486 10.607c.927 0 1.366-1.171.677-1.806l-6.808-6.27a1.99 1.99 0 0 0-2.71 0l-6.808 6.27c-.69.635-.25 1.806.677 1.806H7.95c.56 0 1.013.463 1.013 1.035v8.287c0 1.144.906 2.071 2.025 2.071h2.024c1.119 0 2.025-.927 2.025-2.072v-8.286c0-.572.453-1.035 1.012-1.035z"}]];
2
+ export const __iconNode = [["path",{"d":"M19.486 10.607c.927 0 1.366-1.171.677-1.806C16.903 7.26 14.074 4.962 12 2 9.926 4.962 7.098 7.26 3.837 8.8c-.69.636-.25 1.806.677 1.806H7.95c.56 0 1.013.464 1.013 1.036v8.287c0 1.144.906 2.071 2.025 2.071h2.024c1.119 0 2.025-.927 2.025-2.072v-8.286c0-.572.453-1.035 1.012-1.035z"}]];
3
3
  export default createVadivamIcon("arrow-big-up", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M12 6v16m8-7.5a15.46 15.46 0 0 0-6.493 5.334L12 22l-1.507-2.166A15.46 15.46 0 0 0 4 14.5M15 2H9"}]];
2
+ export const __iconNode = [["path",{"d":"M12 6v16m8-7.5a15.46 15.46 0 0 0-6.493 5.334L12 22l-1.507-2.166A15.46 15.46 0 0 0 4 14.5M17 2H7"}]];
3
3
  export default createVadivamIcon("arrow-down-from-line", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M12 2v16m8-7.5a15.46 15.46 0 0 0-6.493 5.334L12 18l-1.507-2.166A15.46 15.46 0 0 0 4 10.5M15 22H9"}]];
2
+ export const __iconNode = [["path",{"d":"M12 2v16m8-7.5a15.46 15.46 0 0 0-6.493 5.334L12 18l-1.507-2.166A15.46 15.46 0 0 0 4 10.5M17 22H7"}]];
3
3
  export default createVadivamIcon("arrow-down-to-line", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M18 12H2m7.5 8a15.46 15.46 0 0 0-5.334-6.493L2 12l2.166-1.507A15.46 15.46 0 0 0 9.5 4M22 15V9"}]];
2
+ export const __iconNode = [["path",{"d":"M18 12H2m7.5 8a15.46 15.46 0 0 0-5.334-6.493L2 12l2.166-1.507A15.46 15.46 0 0 0 9.5 4M22 17V7"}]];
3
3
  export default createVadivamIcon("arrow-left-from-line", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M22 12H6m7.5 8a15.46 15.46 0 0 0-5.334-6.493L6 12l2.166-1.507A15.46 15.46 0 0 0 13.5 4M2 15V9"}]];
2
+ export const __iconNode = [["path",{"d":"M22 12H6m7.5 8a15.46 15.46 0 0 0-5.334-6.493L6 12l2.166-1.507A15.46 15.46 0 0 0 13.5 4M2 17V7"}]];
3
3
  export default createVadivamIcon("arrow-left-to-line", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M6 12h16m-7.5-8a15.46 15.46 0 0 0 5.334 6.493L22 12l-2.166 1.507A15.46 15.46 0 0 0 14.5 20M2 9v6"}]];
2
+ export const __iconNode = [["path",{"d":"M6 12h16m-7.5-8a15.46 15.46 0 0 0 5.334 6.493L22 12l-2.166 1.507A15.46 15.46 0 0 0 14.5 20M2 7v10"}]];
3
3
  export default createVadivamIcon("arrow-right-from-line", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M2 12h16m-7.5-8a15.46 15.46 0 0 0 5.334 6.493L18 12l-2.166 1.507A15.46 15.46 0 0 0 10.5 20M22 9v6"}]];
2
+ export const __iconNode = [["path",{"d":"M2 12h16m-7.5-8a15.46 15.46 0 0 0 5.334 6.493L18 12l-2.166 1.507A15.46 15.46 0 0 0 10.5 20M22 7v10"}]];
3
3
  export default createVadivamIcon("arrow-right-to-line", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M12 18V2m8 7.5a15.46 15.46 0 0 1-6.493-5.334L12 2l-1.507 2.166A15.46 15.46 0 0 1 4 9.5M15 22H9"}]];
2
+ export const __iconNode = [["path",{"d":"M12 18V2m8 7.5a15.46 15.46 0 0 1-6.493-5.334L12 2l-1.507 2.166A15.46 15.46 0 0 1 4 9.5M17 22H7"}]];
3
3
  export default createVadivamIcon("arrow-up-from-line", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M12 22V6m-8 7.5a15.46 15.46 0 0 0 6.493-5.334L12 6l1.507 2.166A15.46 15.46 0 0 0 20 13.5M15 2H9"}]];
2
+ export const __iconNode = [["path",{"d":"M12 22V6m-8 7.5a15.46 15.46 0 0 0 6.493-5.334L12 6l1.507 2.166A15.46 15.46 0 0 0 20 13.5M17 2H7"}]];
3
3
  export default createVadivamIcon("arrow-up-to-line", __iconNode);
@@ -0,0 +1,4 @@
1
+ import type { IconNode, VadivamIcon } from "../types.js";
2
+ export declare const __iconNode: IconNode;
3
+ declare const icon: VadivamIcon;
4
+ export default icon;
@@ -0,0 +1,3 @@
1
+ import { createVadivamIcon } from "../createVadivamIcon.js";
2
+ export const __iconNode = [["path",{"d":"M12 18.11V5.991m0 12.117v-6.974m0 6.974c0 5.498 7.955 5.006 7.416-.444 3.16-1.896 3.3-7.626 1.081-10.257.455-6.16-8.483-7.623-8.498-1.416m0 12.117c0 5.5-7.926 5.001-7.416-.444-3.157-1.898-3.3-7.626-1.081-10.257-.455-6.155 8.483-7.628 8.497-1.416m0 0v5.143m5.452 3.743c.546.138 1.782 1.032 1.968 2.775M16.171 7.259c-2.231.275-4.114 2.82-4.172 3.876m0 0c-.057-1.056-1.94-3.6-4.171-3.876m11.53 2.608c.556-.482 1-1.58 1.142-2.458M6.548 14.88c-.547.137-1.782 1.03-1.968 2.774m.06-7.786c-.556-.482-1-1.58-1.141-2.458"}]];
3
+ export default createVadivamIcon("brain", __iconNode);
@@ -0,0 +1,4 @@
1
+ import type { IconNode, VadivamIcon } from "../types.js";
2
+ export declare const __iconNode: IconNode;
3
+ declare const icon: VadivamIcon;
4
+ export default icon;
@@ -0,0 +1,3 @@
1
+ import { createVadivamIcon } from "../createVadivamIcon.js";
2
+ export const __iconNode = [["path",{"d":"M6 16c2.1 1.167 4.833 3.9 6 6 1.167-2.1 3.9-4.833 6-6M6 8c2.1-1.167 4.833-3.9 6-6 1.167 2.1 3.9 4.833 6 6"}]];
3
+ export default createVadivamIcon("chevrons-up-down", __iconNode);
@@ -0,0 +1,4 @@
1
+ import type { IconNode, VadivamIcon } from "../types.js";
2
+ export declare const __iconNode: IconNode;
3
+ declare const icon: VadivamIcon;
4
+ export default icon;
@@ -0,0 +1,3 @@
1
+ import { createVadivamIcon } from "../createVadivamIcon.js";
2
+ export const __iconNode = [["path",{"d":"M12 2v2m4-2v2M8 2v2m4 16v2m4-2v2m-8-2v2M4 12H2m20 0h-2M4 16H2m20 0h-2M4 8H2m20 0h-2M8.8 20h6.4a4.8 4.8 0 0 0 4.8-4.8V8.8A4.8 4.8 0 0 0 15.2 4H8.8A4.8 4.8 0 0 0 4 8.8v6.4A4.8 4.8 0 0 0 8.8 20m2-5h2.4a1.8 1.8 0 0 0 1.8-1.8v-2.4A1.8 1.8 0 0 0 13.2 9h-2.4A1.8 1.8 0 0 0 9 10.8v2.4a1.8 1.8 0 0 0 1.8 1.8"}]];
3
+ export default createVadivamIcon("cpu", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M3 16.005C3 18.203 4.58 21 7.375 21h9.25C19.422 21 21 18.2 21 16"}],["path",{"d":"M12 3.5v13m6.5-6.094a12.56 12.56 0 0 0-5.276 4.334L12 16.5l-1.224-1.76A12.56 12.56 0 0 0 5.5 10.406"}]];
2
+ export const __iconNode = [["path",{"d":"M3 17.005C3 19.203 4.58 22 7.375 22h9.25C19.422 22 21 19.2 21 17M12 2v15m6.5-6.094a12.56 12.56 0 0 0-5.276 4.334L12 17l-1.224-1.76A12.56 12.56 0 0 0 5.5 10.906"}]];
3
3
  export default createVadivamIcon("download", __iconNode);
@@ -0,0 +1,4 @@
1
+ import type { IconNode, VadivamIcon } from "../types.js";
2
+ export declare const __iconNode: IconNode;
3
+ declare const icon: VadivamIcon;
4
+ export default icon;
@@ -0,0 +1,3 @@
1
+ import { createVadivamIcon } from "../createVadivamIcon.js";
2
+ export const __iconNode = [["path",{"d":"M5 2v14c0-5.719 5.553-11 11-11M5 22a3 3 0 1 0 0-6 3 3 0 0 0 0 6"}],["path",{"d":"M19 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5 9h6"}]];
3
+ export default createVadivamIcon("git-branch-minus", __iconNode);
@@ -0,0 +1,4 @@
1
+ import type { IconNode, VadivamIcon } from "../types.js";
2
+ export declare const __iconNode: IconNode;
3
+ declare const icon: VadivamIcon;
4
+ export default icon;
@@ -0,0 +1,3 @@
1
+ import { createVadivamIcon } from "../createVadivamIcon.js";
2
+ export const __iconNode = [["path",{"d":"M5 2v14c0-5.719 5.553-11 11-11M5 22a3 3 0 1 0 0-6 3 3 0 0 0 0 6"}],["path",{"d":"M19 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5 9h6m-2.995-2.995v6"}]];
3
+ export default createVadivamIcon("git-branch-plus", __iconNode);
@@ -0,0 +1,4 @@
1
+ import type { IconNode, VadivamIcon } from "../types.js";
2
+ export declare const __iconNode: IconNode;
3
+ declare const icon: VadivamIcon;
4
+ export default icon;
@@ -0,0 +1,3 @@
1
+ import { createVadivamIcon } from "../createVadivamIcon.js";
2
+ export const __iconNode = [["path",{"d":"M5 2v14c0-5.719 5.553-11 11-11M5 22a3 3 0 1 0 0-6 3 3 0 0 0 0 6"}],["path",{"d":"M19 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6"}]];
3
+ export default createVadivamIcon("git-branch", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M8.67 12h-.945m8.5 0h-.944M8.669 4.875h-.944m8.5 0h-.944m-6.612 14.25h-.944m8.5 0h-.944"}]];
2
+ export const __iconNode = [["path",{"d":"M8.67 12h-.945m8.5 0h-.945M8.67 4.875h-.945m8.5 0h-.945m-6.61 14.25h-.945m8.5 0h-.945"}]];
3
3
  export default createVadivamIcon("grip-vertical", __iconNode);
@@ -0,0 +1,4 @@
1
+ import type { IconNode, VadivamIcon } from "../types.js";
2
+ export declare const __iconNode: IconNode;
3
+ declare const icon: VadivamIcon;
4
+ export default icon;
@@ -0,0 +1,3 @@
1
+ import { createVadivamIcon } from "../createVadivamIcon.js";
2
+ export const __iconNode = [["path",{"d":"M11.5 17h1m4 0h1M3.25 12.258a75 75 0 0 0 17.5 0M6.015 2l-2.727 9.188A8.4 8.4 0 0 0 3 13.368v6.07c0 1.118.91 2.052 2 2.052 4.643.68 9.357.68 14 0 1.09 0 2-.934 2-2.052v-6.07c0-.737-.097-1.47-.288-2.18L18.55 2A38.8 38.8 0 0 1 6.015 2"}]];
3
+ export default createVadivamIcon("hard-drive", __iconNode);
@@ -0,0 +1,4 @@
1
+ import type { IconNode, VadivamIcon } from "../types.js";
2
+ export declare const __iconNode: IconNode;
3
+ declare const icon: VadivamIcon;
4
+ export default icon;
@@ -0,0 +1,3 @@
1
+ import { createVadivamIcon } from "../createVadivamIcon.js";
2
+ export const __iconNode = [["path",{"d":"M3.278 7.5C4.858 3.968 7.873 2 12.074 2c13.406 0 13.063 20 0 20C6.76 22 2.514 18.053 2 13M2 3a6.6 6.6 0 0 1 0 5 7.05 7.05 0 0 1 5.123 0"}],["path",{"d":"M12 6.75v6l4 2"}]];
3
+ export default createVadivamIcon("history", __iconNode);
@@ -167,16 +167,19 @@ export { default as BetweenVerticalEnd, default as BetweenVerticalEndIcon, defau
167
167
  export { default as BetweenVerticalStart, default as BetweenVerticalStartIcon, default as VadivamBetweenVerticalStart } from "./between-vertical-start.js";
168
168
  export { default as BookOpen, default as BookOpenIcon, default as VadivamBookOpen } from "./book-open.js";
169
169
  export { default as Bot, default as BotIcon, default as VadivamBot } from "./bot.js";
170
+ export { default as Brain, default as BrainIcon, default as VadivamBrain } from "./brain.js";
170
171
  export { default as Calendar, default as CalendarIcon, default as VadivamCalendar } from "./calendar.js";
171
172
  export { default as Check, default as CheckIcon, default as VadivamCheck } from "./check.js";
172
173
  export { default as ChevronDown, default as ChevronDownIcon, default as VadivamChevronDown } from "./chevron-down.js";
173
174
  export { default as ChevronLeft, default as ChevronLeftIcon, default as VadivamChevronLeft } from "./chevron-left.js";
174
175
  export { default as ChevronRight, default as ChevronRightIcon, default as VadivamChevronRight } from "./chevron-right.js";
175
176
  export { default as ChevronUp, default as ChevronUpIcon, default as VadivamChevronUp } from "./chevron-up.js";
177
+ export { default as ChevronsUpDown, default as ChevronsUpDownIcon, default as VadivamChevronsUpDown } from "./chevrons-up-down.js";
176
178
  export { default as Circle, default as CircleIcon, default as VadivamCircle } from "./circle.js";
177
179
  export { default as Clock, default as ClockIcon, default as VadivamClock } from "./clock.js";
178
180
  export { default as Code, default as CodeIcon, default as VadivamCode } from "./code.js";
179
181
  export { default as Copy, default as CopyIcon, default as VadivamCopy } from "./copy.js";
182
+ export { default as Cpu, default as CpuIcon, default as VadivamCpu } from "./cpu.js";
180
183
  export { default as Database, default as DatabaseIcon, default as VadivamDatabase } from "./database.js";
181
184
  export { default as Download, default as DownloadIcon, default as VadivamDownload } from "./download.js";
182
185
  export { default as ExternalLink, default as ExternalLinkIcon, default as VadivamExternalLink } from "./external-link.js";
@@ -186,10 +189,15 @@ export { default as FileText, default as FileTextIcon, default as VadivamFileTex
186
189
  export { default as File, default as FileIcon, default as VadivamFile } from "./file.js";
187
190
  export { default as FolderOpen, default as FolderOpenIcon, default as VadivamFolderOpen } from "./folder-open.js";
188
191
  export { default as Folder, default as FolderIcon, default as VadivamFolder } from "./folder.js";
192
+ export { default as GitBranchMinus, default as GitBranchMinusIcon, default as VadivamGitBranchMinus } from "./git-branch-minus.js";
193
+ export { default as GitBranchPlus, default as GitBranchPlusIcon, default as VadivamGitBranchPlus } from "./git-branch-plus.js";
194
+ export { default as GitBranch, default as GitBranchIcon, default as VadivamGitBranch } from "./git-branch.js";
189
195
  export { default as Globe, default as GlobeIcon, default as VadivamGlobe } from "./globe.js";
190
196
  export { default as GripHorizontal, default as GripHorizontalIcon, default as VadivamGripHorizontal } from "./grip-horizontal.js";
191
197
  export { default as GripVertical, default as GripVerticalIcon, default as VadivamGripVertical } from "./grip-vertical.js";
198
+ export { default as HardDrive, default as HardDriveIcon, default as VadivamHardDrive } from "./hard-drive.js";
192
199
  export { default as Heart, default as HeartIcon, default as VadivamHeart } from "./heart.js";
200
+ export { default as History, default as HistoryIcon, default as VadivamHistory } from "./history.js";
193
201
  export { default as Image, default as ImageIcon, default as VadivamImage } from "./image.js";
194
202
  export { default as Info, default as InfoIcon, default as VadivamInfo } from "./info.js";
195
203
  export { default as Layers, default as LayersIcon, default as VadivamLayers } from "./layers.js";
@@ -203,6 +211,7 @@ export { default as MessageSquare, default as MessageSquareIcon, default as Vadi
203
211
  export { default as Minus, default as MinusIcon, default as VadivamMinus } from "./minus.js";
204
212
  export { default as Monitor, default as MonitorIcon, default as VadivamMonitor } from "./monitor.js";
205
213
  export { default as Moon, default as MoonIcon, default as VadivamMoon } from "./moon.js";
214
+ export { default as Palette, default as PaletteIcon, default as VadivamPalette } from "./palette.js";
206
215
  export { default as Pencil, default as PencilIcon, default as VadivamPencil } from "./pencil.js";
207
216
  export { default as Play, default as PlayIcon, default as VadivamPlay } from "./play.js";
208
217
  export { default as Plus, default as PlusIcon, default as VadivamPlus } from "./plus.js";
@@ -223,6 +232,7 @@ export { default as Star, default as StarIcon, default as VadivamStar } from "./
223
232
  export { default as Sun, default as SunIcon, default as VadivamSun } from "./sun.js";
224
233
  export { default as Terminal, default as TerminalIcon, default as VadivamTerminal } from "./terminal.js";
225
234
  export { default as Trash2, default as Trash2Icon, default as VadivamTrash2 } from "./trash-2.js";
235
+ export { default as TrendingUp, default as TrendingUpIcon, default as VadivamTrendingUp } from "./trending-up.js";
226
236
  export { default as Upload, default as UploadIcon, default as VadivamUpload } from "./upload.js";
227
237
  export { default as User, default as UserIcon, default as VadivamUser } from "./user.js";
228
238
  export { default as Users, default as UsersIcon, default as VadivamUsers } from "./users.js";
@@ -167,16 +167,19 @@ export { default as BetweenVerticalEnd, default as BetweenVerticalEndIcon, defau
167
167
  export { default as BetweenVerticalStart, default as BetweenVerticalStartIcon, default as VadivamBetweenVerticalStart } from "./between-vertical-start.js";
168
168
  export { default as BookOpen, default as BookOpenIcon, default as VadivamBookOpen } from "./book-open.js";
169
169
  export { default as Bot, default as BotIcon, default as VadivamBot } from "./bot.js";
170
+ export { default as Brain, default as BrainIcon, default as VadivamBrain } from "./brain.js";
170
171
  export { default as Calendar, default as CalendarIcon, default as VadivamCalendar } from "./calendar.js";
171
172
  export { default as Check, default as CheckIcon, default as VadivamCheck } from "./check.js";
172
173
  export { default as ChevronDown, default as ChevronDownIcon, default as VadivamChevronDown } from "./chevron-down.js";
173
174
  export { default as ChevronLeft, default as ChevronLeftIcon, default as VadivamChevronLeft } from "./chevron-left.js";
174
175
  export { default as ChevronRight, default as ChevronRightIcon, default as VadivamChevronRight } from "./chevron-right.js";
175
176
  export { default as ChevronUp, default as ChevronUpIcon, default as VadivamChevronUp } from "./chevron-up.js";
177
+ export { default as ChevronsUpDown, default as ChevronsUpDownIcon, default as VadivamChevronsUpDown } from "./chevrons-up-down.js";
176
178
  export { default as Circle, default as CircleIcon, default as VadivamCircle } from "./circle.js";
177
179
  export { default as Clock, default as ClockIcon, default as VadivamClock } from "./clock.js";
178
180
  export { default as Code, default as CodeIcon, default as VadivamCode } from "./code.js";
179
181
  export { default as Copy, default as CopyIcon, default as VadivamCopy } from "./copy.js";
182
+ export { default as Cpu, default as CpuIcon, default as VadivamCpu } from "./cpu.js";
180
183
  export { default as Database, default as DatabaseIcon, default as VadivamDatabase } from "./database.js";
181
184
  export { default as Download, default as DownloadIcon, default as VadivamDownload } from "./download.js";
182
185
  export { default as ExternalLink, default as ExternalLinkIcon, default as VadivamExternalLink } from "./external-link.js";
@@ -186,10 +189,15 @@ export { default as FileText, default as FileTextIcon, default as VadivamFileTex
186
189
  export { default as File, default as FileIcon, default as VadivamFile } from "./file.js";
187
190
  export { default as FolderOpen, default as FolderOpenIcon, default as VadivamFolderOpen } from "./folder-open.js";
188
191
  export { default as Folder, default as FolderIcon, default as VadivamFolder } from "./folder.js";
192
+ export { default as GitBranchMinus, default as GitBranchMinusIcon, default as VadivamGitBranchMinus } from "./git-branch-minus.js";
193
+ export { default as GitBranchPlus, default as GitBranchPlusIcon, default as VadivamGitBranchPlus } from "./git-branch-plus.js";
194
+ export { default as GitBranch, default as GitBranchIcon, default as VadivamGitBranch } from "./git-branch.js";
189
195
  export { default as Globe, default as GlobeIcon, default as VadivamGlobe } from "./globe.js";
190
196
  export { default as GripHorizontal, default as GripHorizontalIcon, default as VadivamGripHorizontal } from "./grip-horizontal.js";
191
197
  export { default as GripVertical, default as GripVerticalIcon, default as VadivamGripVertical } from "./grip-vertical.js";
198
+ export { default as HardDrive, default as HardDriveIcon, default as VadivamHardDrive } from "./hard-drive.js";
192
199
  export { default as Heart, default as HeartIcon, default as VadivamHeart } from "./heart.js";
200
+ export { default as History, default as HistoryIcon, default as VadivamHistory } from "./history.js";
193
201
  export { default as Image, default as ImageIcon, default as VadivamImage } from "./image.js";
194
202
  export { default as Info, default as InfoIcon, default as VadivamInfo } from "./info.js";
195
203
  export { default as Layers, default as LayersIcon, default as VadivamLayers } from "./layers.js";
@@ -203,6 +211,7 @@ export { default as MessageSquare, default as MessageSquareIcon, default as Vadi
203
211
  export { default as Minus, default as MinusIcon, default as VadivamMinus } from "./minus.js";
204
212
  export { default as Monitor, default as MonitorIcon, default as VadivamMonitor } from "./monitor.js";
205
213
  export { default as Moon, default as MoonIcon, default as VadivamMoon } from "./moon.js";
214
+ export { default as Palette, default as PaletteIcon, default as VadivamPalette } from "./palette.js";
206
215
  export { default as Pencil, default as PencilIcon, default as VadivamPencil } from "./pencil.js";
207
216
  export { default as Play, default as PlayIcon, default as VadivamPlay } from "./play.js";
208
217
  export { default as Plus, default as PlusIcon, default as VadivamPlus } from "./plus.js";
@@ -223,6 +232,7 @@ export { default as Star, default as StarIcon, default as VadivamStar } from "./
223
232
  export { default as Sun, default as SunIcon, default as VadivamSun } from "./sun.js";
224
233
  export { default as Terminal, default as TerminalIcon, default as VadivamTerminal } from "./terminal.js";
225
234
  export { default as Trash2, default as Trash2Icon, default as VadivamTrash2 } from "./trash-2.js";
235
+ export { default as TrendingUp, default as TrendingUpIcon, default as VadivamTrendingUp } from "./trending-up.js";
226
236
  export { default as Upload, default as UploadIcon, default as VadivamUpload } from "./upload.js";
227
237
  export { default as User, default as UserIcon, default as VadivamUser } from "./user.js";
228
238
  export { default as Users, default as UsersIcon, default as VadivamUsers } from "./users.js";
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M8.245 3.25c-2.198 0-4.995 1.58-4.995 4.375v9.25c0 2.797 2.8 4.375 5 4.375m-.5-9h13m-6.094 6.5a12.56 12.56 0 0 1 4.334-5.276l1.76-1.224-1.76-1.224a12.56 12.56 0 0 1-4.334-5.276"}]];
2
+ export const __iconNode = [["path",{"d":"M6.995 3C4.797 3 2 4.58 2 7.375v9.25C2 19.422 4.8 21 7 21m0-9h15m-6.094 6.5a12.56 12.56 0 0 1 4.334-5.276L22 12l-1.76-1.224A12.56 12.56 0 0 1 15.906 5.5"}]];
3
3
  export default createVadivamIcon("log-out", __iconNode);
@@ -0,0 +1,4 @@
1
+ import type { IconNode, VadivamIcon } from "../types.js";
2
+ export declare const __iconNode: IconNode;
3
+ declare const icon: VadivamIcon;
4
+ export default icon;
@@ -0,0 +1,3 @@
1
+ import { createVadivamIcon } from "../createVadivamIcon.js";
2
+ export const __iconNode = [["path",{"d":"M12 22C6.553 22 2 17.447 2 12S6.553 2 12 2c5.006 0 10 3.695 10 9 0 4.15-4.035 4.01-7.25 5-3.25 1-1.57 2.686-.757 4.093C14.805 21.5 13.076 22 12 22"}],["path",{"d":"M6 14c0 .5.5 1.5 1 1.802M12.783 6C12 6 11.5 6 10.75 6.345M7.06 8C6.5 8.5 6 9.5 6 9.768m11.6-.143S17 8.5 16.167 8.143"}]];
3
+ export default createVadivamIcon("palette", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M10.578 13.422a.6.6 0 0 1 .123.178c.99 2.78 2.068 5.496 3.577 8.047a.595.595 0 0 0 1.105-.044 73.5 73.5 0 0 0 6.32-17.624l.262-1.189a.595.595 0 0 0-.755-.757A73.6 73.6 0 0 1 3.586 8.356l-1.189.261a.595.595 0 0 0-.044 1.104c2.457 1.703 5.09 2.998 8.047 3.578a.6.6 0 0 1 .178.123m0 0C12.101 12.528 13.812 11.287 15 10"}]];
2
+ export const __iconNode = [["path",{"d":"M10.578 13.422a.6.6 0 0 1 .123.178c.99 2.78 2.068 5.496 3.577 8.047a.595.595 0 0 0 1.105-.044 73.5 73.5 0 0 0 6.32-17.624l.262-1.189a.594.594 0 0 0-.755-.757A73.6 73.6 0 0 1 3.586 8.356l-1.189.261a.595.595 0 0 0-.044 1.104c2.457 1.703 5.09 2.998 8.047 3.578a.6.6 0 0 1 .178.123m0 0C12.101 12.528 13.812 11.287 15 10"}]];
3
3
  export default createVadivamIcon("send", __iconNode);
@@ -0,0 +1,4 @@
1
+ import type { IconNode, VadivamIcon } from "../types.js";
2
+ export declare const __iconNode: IconNode;
3
+ declare const icon: VadivamIcon;
4
+ export default icon;
@@ -0,0 +1,3 @@
1
+ import { createVadivamIcon } from "../createVadivamIcon.js";
2
+ export const __iconNode = [["path",{"d":"m2 19 3.001-4.688c2.559-3.006 8.237.777 10.692-1.999L20.5 6.5 22 5m0 10c-1.31-3.146-1.26-6.852 0-10-3.207 1.466-6.784 1.197-10 0"}]];
3
+ export default createVadivamIcon("trending-up", __iconNode);
@@ -1,3 +1,3 @@
1
1
  import { createVadivamIcon } from "../createVadivamIcon.js";
2
- export const __iconNode = [["path",{"d":"M3 16.005C3 18.203 4.58 21 7.375 21h9.25C19.422 21 21 18.2 21 16m-9 .5v-13m6.5 6.094a12.56 12.56 0 0 1-5.276-4.334L12 3.5l-1.224 1.76A12.56 12.56 0 0 1 5.5 9.594"}]];
2
+ export const __iconNode = [["path",{"d":"M3 17.005C3 19.203 4.58 22 7.375 22h9.25C19.422 22 21 19.2 21 17m-9 0V2m6.5 6.094a12.56 12.56 0 0 1-5.276-4.334L12 2l-1.224 1.76A12.56 12.56 0 0 1 5.5 8.094"}]];
3
3
  export default createVadivamIcon("upload", __iconNode);
package/dist/icons.d.ts CHANGED
@@ -169,16 +169,19 @@ export declare const icons: {
169
169
  readonly BetweenVerticalStart: VadivamIcon;
170
170
  readonly BookOpen: VadivamIcon;
171
171
  readonly Bot: VadivamIcon;
172
+ readonly Brain: VadivamIcon;
172
173
  readonly Calendar: VadivamIcon;
173
174
  readonly Check: VadivamIcon;
174
175
  readonly ChevronDown: VadivamIcon;
175
176
  readonly ChevronLeft: VadivamIcon;
176
177
  readonly ChevronRight: VadivamIcon;
177
178
  readonly ChevronUp: VadivamIcon;
179
+ readonly ChevronsUpDown: VadivamIcon;
178
180
  readonly Circle: VadivamIcon;
179
181
  readonly Clock: VadivamIcon;
180
182
  readonly Code: VadivamIcon;
181
183
  readonly Copy: VadivamIcon;
184
+ readonly Cpu: VadivamIcon;
182
185
  readonly Database: VadivamIcon;
183
186
  readonly Download: VadivamIcon;
184
187
  readonly ExternalLink: VadivamIcon;
@@ -188,10 +191,15 @@ export declare const icons: {
188
191
  readonly File: VadivamIcon;
189
192
  readonly FolderOpen: VadivamIcon;
190
193
  readonly Folder: VadivamIcon;
194
+ readonly GitBranchMinus: VadivamIcon;
195
+ readonly GitBranchPlus: VadivamIcon;
196
+ readonly GitBranch: VadivamIcon;
191
197
  readonly Globe: VadivamIcon;
192
198
  readonly GripHorizontal: VadivamIcon;
193
199
  readonly GripVertical: VadivamIcon;
200
+ readonly HardDrive: VadivamIcon;
194
201
  readonly Heart: VadivamIcon;
202
+ readonly History: VadivamIcon;
195
203
  readonly Image: VadivamIcon;
196
204
  readonly Info: VadivamIcon;
197
205
  readonly Layers: VadivamIcon;
@@ -205,6 +213,7 @@ export declare const icons: {
205
213
  readonly Minus: VadivamIcon;
206
214
  readonly Monitor: VadivamIcon;
207
215
  readonly Moon: VadivamIcon;
216
+ readonly Palette: VadivamIcon;
208
217
  readonly Pencil: VadivamIcon;
209
218
  readonly Play: VadivamIcon;
210
219
  readonly Plus: VadivamIcon;
@@ -225,6 +234,7 @@ export declare const icons: {
225
234
  readonly Sun: VadivamIcon;
226
235
  readonly Terminal: VadivamIcon;
227
236
  readonly Trash2: VadivamIcon;
237
+ readonly TrendingUp: VadivamIcon;
228
238
  readonly Upload: VadivamIcon;
229
239
  readonly User: VadivamIcon;
230
240
  readonly Users: VadivamIcon;
package/dist/icons.js CHANGED
@@ -167,16 +167,19 @@ import BetweenVerticalEnd from "./icons/between-vertical-end.js";
167
167
  import BetweenVerticalStart from "./icons/between-vertical-start.js";
168
168
  import BookOpen from "./icons/book-open.js";
169
169
  import Bot from "./icons/bot.js";
170
+ import Brain from "./icons/brain.js";
170
171
  import Calendar from "./icons/calendar.js";
171
172
  import Check from "./icons/check.js";
172
173
  import ChevronDown from "./icons/chevron-down.js";
173
174
  import ChevronLeft from "./icons/chevron-left.js";
174
175
  import ChevronRight from "./icons/chevron-right.js";
175
176
  import ChevronUp from "./icons/chevron-up.js";
177
+ import ChevronsUpDown from "./icons/chevrons-up-down.js";
176
178
  import Circle from "./icons/circle.js";
177
179
  import Clock from "./icons/clock.js";
178
180
  import Code from "./icons/code.js";
179
181
  import Copy from "./icons/copy.js";
182
+ import Cpu from "./icons/cpu.js";
180
183
  import Database from "./icons/database.js";
181
184
  import Download from "./icons/download.js";
182
185
  import ExternalLink from "./icons/external-link.js";
@@ -186,10 +189,15 @@ import FileText from "./icons/file-text.js";
186
189
  import File from "./icons/file.js";
187
190
  import FolderOpen from "./icons/folder-open.js";
188
191
  import Folder from "./icons/folder.js";
192
+ import GitBranchMinus from "./icons/git-branch-minus.js";
193
+ import GitBranchPlus from "./icons/git-branch-plus.js";
194
+ import GitBranch from "./icons/git-branch.js";
189
195
  import Globe from "./icons/globe.js";
190
196
  import GripHorizontal from "./icons/grip-horizontal.js";
191
197
  import GripVertical from "./icons/grip-vertical.js";
198
+ import HardDrive from "./icons/hard-drive.js";
192
199
  import Heart from "./icons/heart.js";
200
+ import History from "./icons/history.js";
193
201
  import Image from "./icons/image.js";
194
202
  import Info from "./icons/info.js";
195
203
  import Layers from "./icons/layers.js";
@@ -203,6 +211,7 @@ import MessageSquare from "./icons/message-square.js";
203
211
  import Minus from "./icons/minus.js";
204
212
  import Monitor from "./icons/monitor.js";
205
213
  import Moon from "./icons/moon.js";
214
+ import Palette from "./icons/palette.js";
206
215
  import Pencil from "./icons/pencil.js";
207
216
  import Play from "./icons/play.js";
208
217
  import Plus from "./icons/plus.js";
@@ -223,6 +232,7 @@ import Star from "./icons/star.js";
223
232
  import Sun from "./icons/sun.js";
224
233
  import Terminal from "./icons/terminal.js";
225
234
  import Trash2 from "./icons/trash-2.js";
235
+ import TrendingUp from "./icons/trending-up.js";
226
236
  import Upload from "./icons/upload.js";
227
237
  import User from "./icons/user.js";
228
238
  import Users from "./icons/users.js";
@@ -398,16 +408,19 @@ export const icons = {
398
408
  BetweenVerticalStart,
399
409
  BookOpen,
400
410
  Bot,
411
+ Brain,
401
412
  Calendar,
402
413
  Check,
403
414
  ChevronDown,
404
415
  ChevronLeft,
405
416
  ChevronRight,
406
417
  ChevronUp,
418
+ ChevronsUpDown,
407
419
  Circle,
408
420
  Clock,
409
421
  Code,
410
422
  Copy,
423
+ Cpu,
411
424
  Database,
412
425
  Download,
413
426
  ExternalLink,
@@ -417,10 +430,15 @@ export const icons = {
417
430
  File,
418
431
  FolderOpen,
419
432
  Folder,
433
+ GitBranchMinus,
434
+ GitBranchPlus,
435
+ GitBranch,
420
436
  Globe,
421
437
  GripHorizontal,
422
438
  GripVertical,
439
+ HardDrive,
423
440
  Heart,
441
+ History,
424
442
  Image,
425
443
  Info,
426
444
  Layers,
@@ -434,6 +452,7 @@ export const icons = {
434
452
  Minus,
435
453
  Monitor,
436
454
  Moon,
455
+ Palette,
437
456
  Pencil,
438
457
  Play,
439
458
  Plus,
@@ -454,6 +473,7 @@ export const icons = {
454
473
  Sun,
455
474
  Terminal,
456
475
  Trash2,
476
+ TrendingUp,
457
477
  Upload,
458
478
  User,
459
479
  Users,
package/dist/index.d.ts CHANGED
@@ -167,16 +167,19 @@ export { default as BetweenVerticalEnd, default as BetweenVerticalEndIcon, defau
167
167
  export { default as BetweenVerticalStart, default as BetweenVerticalStartIcon, default as VadivamBetweenVerticalStart } from "./icons/between-vertical-start.js";
168
168
  export { default as BookOpen, default as BookOpenIcon, default as VadivamBookOpen } from "./icons/book-open.js";
169
169
  export { default as Bot, default as BotIcon, default as VadivamBot } from "./icons/bot.js";
170
+ export { default as Brain, default as BrainIcon, default as VadivamBrain } from "./icons/brain.js";
170
171
  export { default as Calendar, default as CalendarIcon, default as VadivamCalendar } from "./icons/calendar.js";
171
172
  export { default as Check, default as CheckIcon, default as VadivamCheck } from "./icons/check.js";
172
173
  export { default as ChevronDown, default as ChevronDownIcon, default as VadivamChevronDown } from "./icons/chevron-down.js";
173
174
  export { default as ChevronLeft, default as ChevronLeftIcon, default as VadivamChevronLeft } from "./icons/chevron-left.js";
174
175
  export { default as ChevronRight, default as ChevronRightIcon, default as VadivamChevronRight } from "./icons/chevron-right.js";
175
176
  export { default as ChevronUp, default as ChevronUpIcon, default as VadivamChevronUp } from "./icons/chevron-up.js";
177
+ export { default as ChevronsUpDown, default as ChevronsUpDownIcon, default as VadivamChevronsUpDown } from "./icons/chevrons-up-down.js";
176
178
  export { default as Circle, default as CircleIcon, default as VadivamCircle } from "./icons/circle.js";
177
179
  export { default as Clock, default as ClockIcon, default as VadivamClock } from "./icons/clock.js";
178
180
  export { default as Code, default as CodeIcon, default as VadivamCode } from "./icons/code.js";
179
181
  export { default as Copy, default as CopyIcon, default as VadivamCopy } from "./icons/copy.js";
182
+ export { default as Cpu, default as CpuIcon, default as VadivamCpu } from "./icons/cpu.js";
180
183
  export { default as Database, default as DatabaseIcon, default as VadivamDatabase } from "./icons/database.js";
181
184
  export { default as Download, default as DownloadIcon, default as VadivamDownload } from "./icons/download.js";
182
185
  export { default as ExternalLink, default as ExternalLinkIcon, default as VadivamExternalLink } from "./icons/external-link.js";
@@ -186,10 +189,15 @@ export { default as FileText, default as FileTextIcon, default as VadivamFileTex
186
189
  export { default as File, default as FileIcon, default as VadivamFile } from "./icons/file.js";
187
190
  export { default as FolderOpen, default as FolderOpenIcon, default as VadivamFolderOpen } from "./icons/folder-open.js";
188
191
  export { default as Folder, default as FolderIcon, default as VadivamFolder } from "./icons/folder.js";
192
+ export { default as GitBranchMinus, default as GitBranchMinusIcon, default as VadivamGitBranchMinus } from "./icons/git-branch-minus.js";
193
+ export { default as GitBranchPlus, default as GitBranchPlusIcon, default as VadivamGitBranchPlus } from "./icons/git-branch-plus.js";
194
+ export { default as GitBranch, default as GitBranchIcon, default as VadivamGitBranch } from "./icons/git-branch.js";
189
195
  export { default as Globe, default as GlobeIcon, default as VadivamGlobe } from "./icons/globe.js";
190
196
  export { default as GripHorizontal, default as GripHorizontalIcon, default as VadivamGripHorizontal } from "./icons/grip-horizontal.js";
191
197
  export { default as GripVertical, default as GripVerticalIcon, default as VadivamGripVertical } from "./icons/grip-vertical.js";
198
+ export { default as HardDrive, default as HardDriveIcon, default as VadivamHardDrive } from "./icons/hard-drive.js";
192
199
  export { default as Heart, default as HeartIcon, default as VadivamHeart } from "./icons/heart.js";
200
+ export { default as History, default as HistoryIcon, default as VadivamHistory } from "./icons/history.js";
193
201
  export { default as Image, default as ImageIcon, default as VadivamImage } from "./icons/image.js";
194
202
  export { default as Info, default as InfoIcon, default as VadivamInfo } from "./icons/info.js";
195
203
  export { default as Layers, default as LayersIcon, default as VadivamLayers } from "./icons/layers.js";
@@ -203,6 +211,7 @@ export { default as MessageSquare, default as MessageSquareIcon, default as Vadi
203
211
  export { default as Minus, default as MinusIcon, default as VadivamMinus } from "./icons/minus.js";
204
212
  export { default as Monitor, default as MonitorIcon, default as VadivamMonitor } from "./icons/monitor.js";
205
213
  export { default as Moon, default as MoonIcon, default as VadivamMoon } from "./icons/moon.js";
214
+ export { default as Palette, default as PaletteIcon, default as VadivamPalette } from "./icons/palette.js";
206
215
  export { default as Pencil, default as PencilIcon, default as VadivamPencil } from "./icons/pencil.js";
207
216
  export { default as Play, default as PlayIcon, default as VadivamPlay } from "./icons/play.js";
208
217
  export { default as Plus, default as PlusIcon, default as VadivamPlus } from "./icons/plus.js";
@@ -223,6 +232,7 @@ export { default as Star, default as StarIcon, default as VadivamStar } from "./
223
232
  export { default as Sun, default as SunIcon, default as VadivamSun } from "./icons/sun.js";
224
233
  export { default as Terminal, default as TerminalIcon, default as VadivamTerminal } from "./icons/terminal.js";
225
234
  export { default as Trash2, default as Trash2Icon, default as VadivamTrash2 } from "./icons/trash-2.js";
235
+ export { default as TrendingUp, default as TrendingUpIcon, default as VadivamTrendingUp } from "./icons/trending-up.js";
226
236
  export { default as Upload, default as UploadIcon, default as VadivamUpload } from "./icons/upload.js";
227
237
  export { default as User, default as UserIcon, default as VadivamUser } from "./icons/user.js";
228
238
  export { default as Users, default as UsersIcon, default as VadivamUsers } from "./icons/users.js";
package/dist/index.js CHANGED
@@ -167,16 +167,19 @@ export { default as BetweenVerticalEnd, default as BetweenVerticalEndIcon, defau
167
167
  export { default as BetweenVerticalStart, default as BetweenVerticalStartIcon, default as VadivamBetweenVerticalStart } from "./icons/between-vertical-start.js";
168
168
  export { default as BookOpen, default as BookOpenIcon, default as VadivamBookOpen } from "./icons/book-open.js";
169
169
  export { default as Bot, default as BotIcon, default as VadivamBot } from "./icons/bot.js";
170
+ export { default as Brain, default as BrainIcon, default as VadivamBrain } from "./icons/brain.js";
170
171
  export { default as Calendar, default as CalendarIcon, default as VadivamCalendar } from "./icons/calendar.js";
171
172
  export { default as Check, default as CheckIcon, default as VadivamCheck } from "./icons/check.js";
172
173
  export { default as ChevronDown, default as ChevronDownIcon, default as VadivamChevronDown } from "./icons/chevron-down.js";
173
174
  export { default as ChevronLeft, default as ChevronLeftIcon, default as VadivamChevronLeft } from "./icons/chevron-left.js";
174
175
  export { default as ChevronRight, default as ChevronRightIcon, default as VadivamChevronRight } from "./icons/chevron-right.js";
175
176
  export { default as ChevronUp, default as ChevronUpIcon, default as VadivamChevronUp } from "./icons/chevron-up.js";
177
+ export { default as ChevronsUpDown, default as ChevronsUpDownIcon, default as VadivamChevronsUpDown } from "./icons/chevrons-up-down.js";
176
178
  export { default as Circle, default as CircleIcon, default as VadivamCircle } from "./icons/circle.js";
177
179
  export { default as Clock, default as ClockIcon, default as VadivamClock } from "./icons/clock.js";
178
180
  export { default as Code, default as CodeIcon, default as VadivamCode } from "./icons/code.js";
179
181
  export { default as Copy, default as CopyIcon, default as VadivamCopy } from "./icons/copy.js";
182
+ export { default as Cpu, default as CpuIcon, default as VadivamCpu } from "./icons/cpu.js";
180
183
  export { default as Database, default as DatabaseIcon, default as VadivamDatabase } from "./icons/database.js";
181
184
  export { default as Download, default as DownloadIcon, default as VadivamDownload } from "./icons/download.js";
182
185
  export { default as ExternalLink, default as ExternalLinkIcon, default as VadivamExternalLink } from "./icons/external-link.js";
@@ -186,10 +189,15 @@ export { default as FileText, default as FileTextIcon, default as VadivamFileTex
186
189
  export { default as File, default as FileIcon, default as VadivamFile } from "./icons/file.js";
187
190
  export { default as FolderOpen, default as FolderOpenIcon, default as VadivamFolderOpen } from "./icons/folder-open.js";
188
191
  export { default as Folder, default as FolderIcon, default as VadivamFolder } from "./icons/folder.js";
192
+ export { default as GitBranchMinus, default as GitBranchMinusIcon, default as VadivamGitBranchMinus } from "./icons/git-branch-minus.js";
193
+ export { default as GitBranchPlus, default as GitBranchPlusIcon, default as VadivamGitBranchPlus } from "./icons/git-branch-plus.js";
194
+ export { default as GitBranch, default as GitBranchIcon, default as VadivamGitBranch } from "./icons/git-branch.js";
189
195
  export { default as Globe, default as GlobeIcon, default as VadivamGlobe } from "./icons/globe.js";
190
196
  export { default as GripHorizontal, default as GripHorizontalIcon, default as VadivamGripHorizontal } from "./icons/grip-horizontal.js";
191
197
  export { default as GripVertical, default as GripVerticalIcon, default as VadivamGripVertical } from "./icons/grip-vertical.js";
198
+ export { default as HardDrive, default as HardDriveIcon, default as VadivamHardDrive } from "./icons/hard-drive.js";
192
199
  export { default as Heart, default as HeartIcon, default as VadivamHeart } from "./icons/heart.js";
200
+ export { default as History, default as HistoryIcon, default as VadivamHistory } from "./icons/history.js";
193
201
  export { default as Image, default as ImageIcon, default as VadivamImage } from "./icons/image.js";
194
202
  export { default as Info, default as InfoIcon, default as VadivamInfo } from "./icons/info.js";
195
203
  export { default as Layers, default as LayersIcon, default as VadivamLayers } from "./icons/layers.js";
@@ -203,6 +211,7 @@ export { default as MessageSquare, default as MessageSquareIcon, default as Vadi
203
211
  export { default as Minus, default as MinusIcon, default as VadivamMinus } from "./icons/minus.js";
204
212
  export { default as Monitor, default as MonitorIcon, default as VadivamMonitor } from "./icons/monitor.js";
205
213
  export { default as Moon, default as MoonIcon, default as VadivamMoon } from "./icons/moon.js";
214
+ export { default as Palette, default as PaletteIcon, default as VadivamPalette } from "./icons/palette.js";
206
215
  export { default as Pencil, default as PencilIcon, default as VadivamPencil } from "./icons/pencil.js";
207
216
  export { default as Play, default as PlayIcon, default as VadivamPlay } from "./icons/play.js";
208
217
  export { default as Plus, default as PlusIcon, default as VadivamPlus } from "./icons/plus.js";
@@ -223,6 +232,7 @@ export { default as Star, default as StarIcon, default as VadivamStar } from "./
223
232
  export { default as Sun, default as SunIcon, default as VadivamSun } from "./icons/sun.js";
224
233
  export { default as Terminal, default as TerminalIcon, default as VadivamTerminal } from "./icons/terminal.js";
225
234
  export { default as Trash2, default as Trash2Icon, default as VadivamTrash2 } from "./icons/trash-2.js";
235
+ export { default as TrendingUp, default as TrendingUpIcon, default as VadivamTrendingUp } from "./icons/trending-up.js";
226
236
  export { default as Upload, default as UploadIcon, default as VadivamUpload } from "./icons/upload.js";
227
237
  export { default as User, default as UserIcon, default as VadivamUser } from "./icons/user.js";
228
238
  export { default as Users, default as UsersIcon, default as VadivamUsers } from "./icons/users.js";
package/dist/types.d.ts CHANGED
@@ -3,4 +3,4 @@ export type SVGElementType = "circle" | "ellipse" | "line" | "path" | "polygon"
3
3
  export type IconNode = readonly [tag: SVGElementType, attrs: Record<string, string>][];
4
4
  export interface VadivamProps extends Omit<JSX.SVGAttributes<SVGSVGElement>, "color" | "size"> { name?: string; size?: string | number; color?: string; strokeWidth?: string | number; absoluteStrokeWidth?: boolean; title?: string; iconNode?: IconNode; }
5
5
  export type VadivamIcon = ComponentType<VadivamProps>;
6
- export type IconName = "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-clock-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "anchor" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-1-0" | "arrow-down-a-z" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "arrow-down-z-a" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-1-0" | "arrow-up-a-z" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "astroid" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "badge" | "baggage-claim" | "balloon" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "baseline" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef-off" | "beef" | "beer-off" | "beer" | "bell-check" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizontal-start" | "between-vertical-end" | "between-vertical-start" | "book-open" | "bot" | "calendar" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "circle" | "clock" | "code" | "copy" | "database" | "download" | "external-link" | "eye-off" | "eye" | "file-text" | "file" | "folder-open" | "folder" | "globe" | "grip-horizontal" | "grip-vertical" | "heart" | "image" | "info" | "layers" | "link" | "list" | "lock" | "log-out" | "mail" | "menu" | "message-square" | "minus" | "monitor" | "moon" | "pencil" | "play" | "plus" | "refresh-ccw" | "refresh-cw" | "rotate-ccw" | "rotate-cw" | "save" | "search" | "send" | "server" | "settings" | "shield-check" | "shield" | "sparkles" | "square" | "star" | "sun" | "terminal" | "trash-2" | "upload" | "user" | "users" | "x" | "zap";
6
+ export type IconName = "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-clock-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "anchor" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-1-0" | "arrow-down-a-z" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "arrow-down-z-a" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-1-0" | "arrow-up-a-z" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "astroid" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "badge" | "baggage-claim" | "balloon" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "baseline" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef-off" | "beef" | "beer-off" | "beer" | "bell-check" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizontal-start" | "between-vertical-end" | "between-vertical-start" | "book-open" | "bot" | "brain" | "calendar" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-up-down" | "circle" | "clock" | "code" | "copy" | "cpu" | "database" | "download" | "external-link" | "eye-off" | "eye" | "file-text" | "file" | "folder-open" | "folder" | "git-branch-minus" | "git-branch-plus" | "git-branch" | "globe" | "grip-horizontal" | "grip-vertical" | "hard-drive" | "heart" | "history" | "image" | "info" | "layers" | "link" | "list" | "lock" | "log-out" | "mail" | "menu" | "message-square" | "minus" | "monitor" | "moon" | "palette" | "pencil" | "play" | "plus" | "refresh-ccw" | "refresh-cw" | "rotate-ccw" | "rotate-cw" | "save" | "search" | "send" | "server" | "settings" | "shield-check" | "shield" | "sparkles" | "square" | "star" | "sun" | "terminal" | "trash-2" | "trending-up" | "upload" | "user" | "users" | "x" | "zap";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vadivam-preact",
3
- "version": "0.0.23",
3
+ "version": "0.0.26",
4
4
  "description": "Pixel-perfect 24px outline icon components for Preact with tree-shakeable imports.",
5
5
  "license": "MIT",
6
6
  "author": "Praveen Juge",