@rafal.lemieszewski/tide-ui 0.85.1 → 0.87.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.
Files changed (55) hide show
  1. package/dist/cjs/components/fundamental/breadcrumb.cjs +1 -1
  2. package/dist/cjs/components/fundamental/button.cjs +1 -1
  3. package/dist/cjs/components/fundamental/calendar.cjs +1 -1
  4. package/dist/cjs/components/fundamental/country-dropdown.cjs +1 -1
  5. package/dist/cjs/components/fundamental/custom-icons.cjs +1 -1
  6. package/dist/cjs/components/fundamental/dialog.cjs +1 -1
  7. package/dist/cjs/components/fundamental/file-upload.cjs +1 -1
  8. package/dist/cjs/components/fundamental/icon.cjs +1 -1
  9. package/dist/cjs/components/fundamental/month-picker.cjs +1 -1
  10. package/dist/cjs/components/fundamental/pagination.cjs +1 -1
  11. package/dist/cjs/components/fundamental/select.cjs +1 -1
  12. package/dist/cjs/components/fundamental/separator.cjs +1 -1
  13. package/dist/cjs/components/fundamental/sidebar.cjs +1 -1
  14. package/dist/cjs/components/fundamental/toast.cjs +1 -1
  15. package/dist/cjs/components/fundamental/tree.cjs +1 -1
  16. package/dist/cjs/components/product/app-frame.cjs +1 -1
  17. package/dist/cjs/components/product/attributes-list.cjs +1 -1
  18. package/dist/cjs/components/product/bookmarks.cjs +1 -1
  19. package/dist/cjs/components/product/data-table-settings-menu.cjs +1 -1
  20. package/dist/cjs/components/product/data-table.cjs +1 -1
  21. package/dist/cjs/components/product/filters.cjs +1 -1
  22. package/dist/cjs/components/product/fixture-status.cjs +1 -1
  23. package/dist/cjs/components/product/linked-chart.cjs +1 -1
  24. package/dist/cjs/components/product/view-mode-menu.cjs +1 -1
  25. package/dist/es/components/fundamental/button.js +10 -9
  26. package/dist/es/components/fundamental/calendar.js +18 -17
  27. package/dist/es/components/fundamental/custom-icons.js +283 -517
  28. package/dist/es/components/fundamental/dialog.js +25 -24
  29. package/dist/es/components/fundamental/file-upload.js +17 -16
  30. package/dist/es/components/fundamental/icon.js +68 -147
  31. package/dist/es/components/fundamental/month-picker.js +21 -20
  32. package/dist/es/components/fundamental/pagination.js +44 -43
  33. package/dist/es/components/fundamental/select.js +40 -39
  34. package/dist/es/components/fundamental/separator.js +11 -10
  35. package/dist/es/components/fundamental/sidebar.js +85 -84
  36. package/dist/es/components/fundamental/toast.js +8 -7
  37. package/dist/es/components/product/app-frame.js +83 -82
  38. package/dist/es/components/product/attributes-list.js +61 -60
  39. package/dist/es/components/product/bookmarks.js +170 -169
  40. package/dist/es/components/product/data-table-settings-menu.js +38 -37
  41. package/dist/es/components/product/data-table.js +374 -373
  42. package/dist/es/components/product/filters.js +93 -92
  43. package/dist/es/components/product/fixture-status.js +89 -87
  44. package/dist/es/components/product/linked-chart.js +54 -53
  45. package/dist/es/components/product/view-mode-menu.js +176 -175
  46. package/dist/types/components/core-index.d.cts +1 -1
  47. package/dist/types/components/core-index.d.ts +1 -1
  48. package/dist/types/components/fundamental/custom-icons.d.ts +32 -36
  49. package/dist/types/components/fundamental/dropdown-menu.d.ts +2 -1
  50. package/dist/types/components/fundamental/icon.d.ts +1 -3
  51. package/dist/types/components/index.d.ts +2 -1
  52. package/dist/types/components/product/fixture-status.d.ts +2 -2
  53. package/dist/types/lib/index.d.cts +1 -1
  54. package/dist/types/lib/index.d.ts +1 -1
  55. package/package.json +1 -1
@@ -1,74 +1,97 @@
1
- import { jsx as C, jsxs as l } from "react/jsx-runtime";
2
- const d = {
3
- // Chart marker icons
4
- "chart-marker-bar": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C("path", { d: "M7.2 7.2H16.8V16.8H7.2V7.2Z", fill: "currentColor" }) }),
5
- "chart-marker-line": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C("path", { d: "M4.8 9.6H19.2V14.4H4.8V9.6Z", fill: "currentColor" }) }),
6
- "chart-marker-dashline": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ l("g", { children: [
7
- /* @__PURE__ */ C("path", { d: "M16.8 9.6H20.4V14.4H16.8V9.6Z", fill: "currentColor" }),
8
- /* @__PURE__ */ C("path", { d: "M2.4 9.6H6V14.4H2.4V9.6Z", fill: "currentColor" }),
9
- /* @__PURE__ */ C("path", { d: "M8.4 9.6H14.4V14.4H8.4V9.6Z", fill: "currentColor" })
10
- ] }) }),
11
- "chart-marker-dashline2": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ l("g", { children: [
12
- /* @__PURE__ */ C("path", { d: "M12.8 9.6H20.4V14.4H12.8V9.6Z", fill: "currentColor" }),
13
- /* @__PURE__ */ C("path", { d: "M2.4 9.6H10V14.4H2.4V9.6Z", fill: "currentColor" })
14
- ] }) }),
15
- "chart-marker-dotline": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ l("g", { children: [
16
- /* @__PURE__ */ C(
1
+ import { jsx as l, jsxs as d } from "react/jsx-runtime";
2
+ import r from "react";
3
+ const o = /* @__PURE__ */ r.forwardRef(
4
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ l("path", { d: "M7.2 7.2H16.8V16.8H7.2V7.2Z", fill: "currentColor" }) }) })
5
+ );
6
+ o.displayName = "ChartMarkerBar";
7
+ const n = /* @__PURE__ */ r.forwardRef(
8
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ l("path", { d: "M4.8 9.6H19.2V14.4H4.8V9.6Z", fill: "currentColor" }) }) })
9
+ );
10
+ n.displayName = "ChartMarkerLine";
11
+ const i = /* @__PURE__ */ r.forwardRef(
12
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ d("g", { children: [
13
+ /* @__PURE__ */ l("path", { d: "M16.8 9.6H20.4V14.4H16.8V9.6Z", fill: "currentColor" }),
14
+ /* @__PURE__ */ l("path", { d: "M2.4 9.6H6V14.4H2.4V9.6Z", fill: "currentColor" }),
15
+ /* @__PURE__ */ l("path", { d: "M8.4 9.6H14.4V14.4H8.4V9.6Z", fill: "currentColor" })
16
+ ] }) }) })
17
+ );
18
+ i.displayName = "ChartMarkerDashline";
19
+ const a = /* @__PURE__ */ r.forwardRef(
20
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ d("g", { children: [
21
+ /* @__PURE__ */ l("path", { d: "M12.8 9.6H20.4V14.4H12.8V9.6Z", fill: "currentColor" }),
22
+ /* @__PURE__ */ l("path", { d: "M2.4 9.6H10V14.4H2.4V9.6Z", fill: "currentColor" })
23
+ ] }) }) })
24
+ );
25
+ a.displayName = "ChartMarkerDashline2";
26
+ const t = /* @__PURE__ */ r.forwardRef(
27
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ d("g", { children: [
28
+ /* @__PURE__ */ l(
17
29
  "path",
18
30
  {
19
31
  d: "M7.2 12C7.2 13.3255 6.12548 14.4 4.8 14.4C3.47452 14.4 2.4 13.3255 2.4 12C2.4 10.6745 3.47452 9.6 4.8 9.6C6.12548 9.6 7.2 10.6745 7.2 12Z",
20
32
  fill: "currentColor"
21
33
  }
22
34
  ),
23
- /* @__PURE__ */ C(
35
+ /* @__PURE__ */ l(
24
36
  "path",
25
37
  {
26
38
  d: "M13.8 12C13.8 13.3255 12.7255 14.4 11.4 14.4C10.0745 14.4 9 13.3255 9 12C9 10.6745 10.0745 9.6 11.4 9.6C12.7255 9.6 13.8 10.6745 13.8 12Z",
27
39
  fill: "currentColor"
28
40
  }
29
41
  ),
30
- /* @__PURE__ */ C(
42
+ /* @__PURE__ */ l(
31
43
  "path",
32
44
  {
33
45
  d: "M20.4 12C20.4 13.3255 19.3255 14.4 18 14.4C16.6745 14.4 15.6 13.3255 15.6 12C15.6 10.6745 16.6745 9.6 18 9.6C19.3255 9.6 20.4 10.6745 20.4 12Z",
34
46
  fill: "currentColor"
35
47
  }
36
48
  )
37
- ] }) }),
38
- "chart-marker-dot": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C(
49
+ ] }) }) })
50
+ );
51
+ t.displayName = "ChartMarkerDotline";
52
+ const c = /* @__PURE__ */ r.forwardRef(
53
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ l(
39
54
  "path",
40
55
  {
41
56
  d: "M16.8 12C16.8 14.651 14.651 16.8 12 16.8C9.34903 16.8 7.2 14.651 7.2 12C7.2 9.34903 9.34903 7.2 12 7.2C14.651 7.2 16.8 9.34903 16.8 12Z",
42
57
  fill: "currentColor"
43
58
  }
44
- ) }),
45
- // Basic shapes
46
- dot: /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C(
59
+ ) }) })
60
+ );
61
+ c.displayName = "ChartMarkerDot";
62
+ const f = /* @__PURE__ */ r.forwardRef(
63
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ l(
47
64
  "path",
48
65
  {
49
66
  d: "M14.4 12C14.4 13.3255 13.3255 14.4 12 14.4C10.6745 14.4 9.6 13.3255 9.6 12C9.6 10.6745 10.6745 9.6 12 9.6C13.3255 9.6 14.4 10.6745 14.4 12Z",
50
67
  fill: "currentColor"
51
68
  }
52
- ) }),
53
- // Complex icons
54
- "bubble-size": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C(
69
+ ) }) })
70
+ );
71
+ f.displayName = "Dot";
72
+ const u = /* @__PURE__ */ r.forwardRef(
73
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ l(
55
74
  "path",
56
75
  {
57
76
  d: "M12 2.40039C17.3019 2.40039 21.5996 6.69807 21.5996 12C21.5996 17.3019 17.3019 21.5996 12 21.5996C6.69807 21.5996 2.40039 17.3019 2.40039 12C2.40039 6.69807 6.69807 2.40039 12 2.40039ZM12 13.2002C10.0118 13.2002 8.4005 14.8117 8.40039 16.7998C8.40039 18.7241 9.90988 20.2955 11.8096 20.3945C11.8729 20.3959 11.9363 20.4004 12 20.4004L12.1895 20.3945C14.0896 20.296 15.5996 18.7245 15.5996 16.7998C15.5995 14.8117 13.9882 13.2002 12 13.2002ZM12 8.40039C8.68629 8.40039 6 11.0867 6 14.4004C6.00009 15.8879 6.54202 17.2485 7.43848 18.2969C7.28399 17.8258 7.2002 17.3225 7.2002 16.7998C7.2003 14.1489 9.3491 12 12 12C14.6509 12 16.7997 14.1489 16.7998 16.7998C16.7998 17.3226 16.7151 17.8257 16.5605 18.2969C17.4573 17.2484 17.9999 15.8881 18 14.4004C18 11.0867 15.3137 8.40039 12 8.40039ZM12 3.59961C7.36081 3.59961 3.59961 7.36081 3.59961 12C3.59961 13.9167 4.24361 15.6822 5.32422 17.0957C4.98763 16.263 4.79986 15.3538 4.7998 14.4004C4.7998 10.4239 8.02355 7.2002 12 7.2002C15.9764 7.2002 19.2002 10.4239 19.2002 14.4004C19.2001 15.3539 19.0115 16.2629 18.6748 17.0957C19.7556 15.6821 20.4004 13.9169 20.4004 12C20.4004 7.36081 16.6392 3.59961 12 3.59961Z",
58
77
  fill: "currentColor"
59
78
  }
60
- ) }),
61
- // Analytics icons
62
- "broken-scale": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C(
79
+ ) }) })
80
+ );
81
+ u.displayName = "BubbleSize";
82
+ const p = /* @__PURE__ */ r.forwardRef(
83
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ l(
63
84
  "path",
64
85
  {
65
86
  d: "M9.45 6C9.92072 6.01358 10.3402 6.30164 10.5223 6.73594L14.0742 15.2168L15.9832 11.6707L16.0711 11.5324C16.295 11.2257 16.654 11.0402 17.0402 11.0402H20.4L20.523 11.0461C21.128 11.1077 21.6 11.619 21.6 12.2402C21.5999 12.8613 21.1279 13.3728 20.523 13.4344L20.4 13.4402H17.7563L14.9953 18.5684C14.7761 18.9756 14.3416 19.2213 13.8797 19.1988C13.4181 19.1762 13.0108 18.8902 12.832 18.4641L9.33164 10.1086L8.03906 12.7652C7.83804 13.1779 7.41875 13.4402 6.95977 13.4402H3.6C2.93734 13.4402 2.40013 12.9029 2.4 12.2402C2.4 11.5775 2.93726 11.0402 3.6 11.0402H6.20977L8.33672 6.675L8.42461 6.52383C8.65263 6.18956 9.03768 5.9883 9.45 6Z",
66
87
  fill: "currentColor"
67
88
  }
68
- ) }),
69
- // Shipping icons
70
- "ship-unload": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ l("g", { children: [
71
- /* @__PURE__ */ C(
89
+ ) }) })
90
+ );
91
+ p.displayName = "BrokenScale";
92
+ const v = /* @__PURE__ */ r.forwardRef(
93
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ d("g", { children: [
94
+ /* @__PURE__ */ l(
72
95
  "path",
73
96
  {
74
97
  clipRule: "evenodd",
@@ -77,16 +100,19 @@ const d = {
77
100
  fillRule: "evenodd"
78
101
  }
79
102
  ),
80
- /* @__PURE__ */ C(
103
+ /* @__PURE__ */ l(
81
104
  "path",
82
105
  {
83
106
  d: "M12 14C12.5522 14 13 14.4477 13 15V20.5859L15.293 18.293C15.6835 17.9025 16.3165 17.9025 16.707 18.293C17.0975 18.6835 17.0975 19.3165 16.707 19.707L12.707 23.707C12.6605 23.7536 12.6086 23.7944 12.5537 23.8311C12.5146 23.8572 12.4743 23.8804 12.4326 23.9004C12.3871 23.9223 12.34 23.9412 12.291 23.9561C12.2717 23.9619 12.252 23.966 12.2324 23.9707C12.2201 23.9737 12.2078 23.977 12.1953 23.9795C12.1853 23.9815 12.1751 23.9827 12.165 23.9844C12.1112 23.9933 12.0563 24 12 24L11.8975 23.9951C11.876 23.9929 11.855 23.9879 11.834 23.9844C11.8236 23.9826 11.8131 23.9816 11.8027 23.9795C11.7912 23.9772 11.7799 23.9744 11.7686 23.9717C11.748 23.9668 11.7273 23.9623 11.707 23.9561C11.6584 23.9412 11.6116 23.9222 11.5664 23.9004C11.5245 23.8802 11.4836 23.8574 11.4443 23.8311C11.3899 23.7946 11.3391 23.7532 11.293 23.707L7.29297 19.707C6.90244 19.3165 6.90244 18.6835 7.29304 18.293C7.6835 17.9025 8.31652 17.9025 8.70703 18.293L11 20.5859V15C11 14.4477 11.4477 14 12 14Z",
84
107
  fill: "currentColor"
85
108
  }
86
109
  )
87
- ] }) }),
88
- "ship-load": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ l("g", { children: [
89
- /* @__PURE__ */ C(
110
+ ] }) }) })
111
+ );
112
+ v.displayName = "ShipUnload";
113
+ const h = /* @__PURE__ */ r.forwardRef(
114
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ d("g", { children: [
115
+ /* @__PURE__ */ l(
90
116
  "path",
91
117
  {
92
118
  clipRule: "evenodd",
@@ -95,16 +121,18 @@ const d = {
95
121
  fillRule: "evenodd"
96
122
  }
97
123
  ),
98
- /* @__PURE__ */ C(
124
+ /* @__PURE__ */ l(
99
125
  "path",
100
126
  {
101
127
  d: "M12.0001 14L12.1026 14.0049C12.1237 14.007 12.1444 14.0112 12.1651 14.0146C12.1752 14.0163 12.1854 14.0175 12.1954 14.0195C12.2079 14.022 12.2202 14.0254 12.2325 14.0283C12.2521 14.033 12.2718 14.0371 12.2911 14.043C12.3402 14.0579 12.3871 14.0777 12.4327 14.0996C12.4742 14.1196 12.5148 14.142 12.5538 14.168C12.6089 14.2047 12.6604 14.2463 12.7071 14.293L16.7071 18.293C17.0976 18.6835 17.0976 19.3165 16.7071 19.707C16.3166 20.0975 15.6836 20.0975 15.293 19.707L13.0001 17.4141V23C13.0001 23.5523 12.5523 24 12.0001 24C11.4478 24 11.0001 23.5523 11.0001 23V17.4141L8.70711 19.707C8.31659 20.0975 7.68357 20.0975 7.29304 19.707C6.90252 19.3165 6.90252 18.6835 7.29304 18.293L11.293 14.293C11.3393 14.2467 11.3398 14.2045 11.4444 14.168C11.4836 14.1418 11.5248 14.1197 11.5665 14.0996C11.6118 14.0778 11.6584 14.0579 11.7071 14.043C11.7274 14.0368 11.7481 14.0322 11.7686 14.0273C11.78 14.0247 11.7913 14.0218 11.8028 14.0195L11.8087 14.0186L11.8975 14.0049C11.9312 14.0015 11.9655 14 12.0001 14Z",
102
128
  fill: "currentColor"
103
129
  }
104
130
  )
105
- ] }) }),
106
- // Rating icons
107
- "star-full": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C(
131
+ ] }) }) })
132
+ );
133
+ h.displayName = "ShipLoad";
134
+ const R = /* @__PURE__ */ r.forwardRef(
135
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ l(
108
136
  "path",
109
137
  {
110
138
  fillRule: "evenodd",
@@ -112,10 +140,12 @@ const d = {
112
140
  d: "M5.19836 14.1485L1.46531 10.5143L1.46342 10.5125C1.25828 10.3137 1.11289 10.0614 1.04373 9.78418C0.97436 9.50612 0.984479 9.21417 1.07294 8.94158C1.16139 8.66899 1.32463 8.42672 1.54405 8.24237C1.76274 8.05865 2.02848 7.93982 2.31117 7.8993L7.47506 7.14446C7.65497 7.11829 7.82583 7.04879 7.97292 6.94195C8.12002 6.8351 8.23895 6.69412 8.31947 6.53112L10.6288 1.85145C10.7553 1.59585 10.9507 1.38071 11.193 1.23028C11.4353 1.07986 11.7148 1.00015 12 1.00015C12.2852 1.00015 12.5647 1.07986 12.807 1.23028C13.0493 1.38071 13.2447 1.59585 13.3713 1.85145L15.6816 6.53104C15.762 6.69395 15.8809 6.83489 16.0278 6.94176C16.1748 7.04864 16.3455 7.11826 16.5253 7.14465L21.6894 7.90038L21.6906 7.90055C21.9726 7.94168 22.2378 8.06082 22.4558 8.24448C22.6742 8.42845 22.8367 8.66985 22.925 8.94138C23.0133 9.21289 23.0239 9.50371 22.9555 9.78094C22.8871 10.0582 22.7426 10.3107 22.5381 10.51L18.8019 14.1482C18.6716 14.2752 18.5741 14.432 18.5178 14.6051C18.4615 14.778 18.4481 14.9621 18.4787 15.1414L19.3598 20.2761L19.3603 20.2791C19.4095 20.5606 19.3788 20.8503 19.2717 21.1153C19.1643 21.3812 18.9843 21.6116 18.7522 21.7801C18.5202 21.9487 18.2454 22.0486 17.9593 22.0685C17.6743 22.0884 17.3895 22.028 17.137 21.8943L17.1341 21.8927L12.5211 19.4674C12.3602 19.3829 12.1812 19.3388 11.9995 19.3388C11.8178 19.3388 11.6388 19.3829 11.4779 19.4674L6.8639 21.8938L6.8623 21.8947C6.60961 22.0281 6.32462 22.088 6.03958 22.0678C5.75395 22.0475 5.47974 21.9474 5.24815 21.779C5.01657 21.6106 4.83689 21.3805 4.72957 21.115C4.62257 20.8503 4.59177 20.561 4.64064 20.2797L4.64107 20.2772L5.52142 15.142C5.5522 14.9626 5.53886 14.7784 5.48258 14.6053C5.42632 14.4323 5.32869 14.2754 5.19836 14.1485Z",
113
141
  fill: "currentColor"
114
142
  }
115
- ) }),
116
- // User role icons
117
- "user-created-by": /* @__PURE__ */ l("g", { children: [
118
- /* @__PURE__ */ C(
143
+ ) }) })
144
+ );
145
+ R.displayName = "StarFull";
146
+ const L = /* @__PURE__ */ r.forwardRef(
147
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { children: [
148
+ /* @__PURE__ */ l(
119
149
  "path",
120
150
  {
121
151
  fillRule: "evenodd",
@@ -124,7 +154,7 @@ const d = {
124
154
  fill: "currentColor"
125
155
  }
126
156
  ),
127
- /* @__PURE__ */ C(
157
+ /* @__PURE__ */ l(
128
158
  "path",
129
159
  {
130
160
  fillRule: "evenodd",
@@ -133,7 +163,7 @@ const d = {
133
163
  fill: "currentColor"
134
164
  }
135
165
  ),
136
- /* @__PURE__ */ C(
166
+ /* @__PURE__ */ l(
137
167
  "path",
138
168
  {
139
169
  fillRule: "evenodd",
@@ -142,9 +172,12 @@ const d = {
142
172
  fill: "currentColor"
143
173
  }
144
174
  )
145
- ] }),
146
- "user-owner": /* @__PURE__ */ l("g", { children: [
147
- /* @__PURE__ */ C(
175
+ ] }) })
176
+ );
177
+ L.displayName = "UserCreatedBy";
178
+ const s = /* @__PURE__ */ r.forwardRef(
179
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { children: [
180
+ /* @__PURE__ */ l(
148
181
  "path",
149
182
  {
150
183
  fillRule: "evenodd",
@@ -153,7 +186,7 @@ const d = {
153
186
  fill: "currentColor"
154
187
  }
155
188
  ),
156
- /* @__PURE__ */ C(
189
+ /* @__PURE__ */ l(
157
190
  "path",
158
191
  {
159
192
  fillRule: "evenodd",
@@ -162,7 +195,7 @@ const d = {
162
195
  fill: "currentColor"
163
196
  }
164
197
  ),
165
- /* @__PURE__ */ C(
198
+ /* @__PURE__ */ l(
166
199
  "path",
167
200
  {
168
201
  fillRule: "evenodd",
@@ -171,7 +204,7 @@ const d = {
171
204
  fill: "currentColor"
172
205
  }
173
206
  ),
174
- /* @__PURE__ */ C(
207
+ /* @__PURE__ */ l(
175
208
  "path",
176
209
  {
177
210
  fillRule: "evenodd",
@@ -180,7 +213,7 @@ const d = {
180
213
  fill: "currentColor"
181
214
  }
182
215
  ),
183
- /* @__PURE__ */ C(
216
+ /* @__PURE__ */ l(
184
217
  "path",
185
218
  {
186
219
  fillRule: "evenodd",
@@ -189,9 +222,12 @@ const d = {
189
222
  fill: "currentColor"
190
223
  }
191
224
  )
192
- ] }),
193
- "user-charterer": /* @__PURE__ */ l("g", { children: [
194
- /* @__PURE__ */ C(
225
+ ] }) })
226
+ );
227
+ s.displayName = "UserOwner";
228
+ const M = /* @__PURE__ */ r.forwardRef(
229
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { children: [
230
+ /* @__PURE__ */ l(
195
231
  "path",
196
232
  {
197
233
  fillRule: "evenodd",
@@ -200,7 +236,7 @@ const d = {
200
236
  fill: "currentColor"
201
237
  }
202
238
  ),
203
- /* @__PURE__ */ C(
239
+ /* @__PURE__ */ l(
204
240
  "path",
205
241
  {
206
242
  fillRule: "evenodd",
@@ -209,7 +245,7 @@ const d = {
209
245
  fill: "currentColor"
210
246
  }
211
247
  ),
212
- /* @__PURE__ */ C(
248
+ /* @__PURE__ */ l(
213
249
  "path",
214
250
  {
215
251
  fillRule: "evenodd",
@@ -218,7 +254,7 @@ const d = {
218
254
  fill: "currentColor"
219
255
  }
220
256
  ),
221
- /* @__PURE__ */ C(
257
+ /* @__PURE__ */ l(
222
258
  "path",
223
259
  {
224
260
  fillRule: "evenodd",
@@ -227,9 +263,12 @@ const d = {
227
263
  fill: "currentColor"
228
264
  }
229
265
  )
230
- ] }),
231
- "user-broker": /* @__PURE__ */ l("g", { children: [
232
- /* @__PURE__ */ C(
266
+ ] }) })
267
+ );
268
+ M.displayName = "UserCharterer";
269
+ const Z = /* @__PURE__ */ r.forwardRef(
270
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { children: [
271
+ /* @__PURE__ */ l(
233
272
  "path",
234
273
  {
235
274
  fillRule: "evenodd",
@@ -238,7 +277,7 @@ const d = {
238
277
  fill: "currentColor"
239
278
  }
240
279
  ),
241
- /* @__PURE__ */ C(
280
+ /* @__PURE__ */ l(
242
281
  "path",
243
282
  {
244
283
  fillRule: "evenodd",
@@ -247,7 +286,7 @@ const d = {
247
286
  fill: "currentColor"
248
287
  }
249
288
  ),
250
- /* @__PURE__ */ C(
289
+ /* @__PURE__ */ l(
251
290
  "path",
252
291
  {
253
292
  fillRule: "evenodd",
@@ -256,7 +295,7 @@ const d = {
256
295
  fill: "currentColor"
257
296
  }
258
297
  ),
259
- /* @__PURE__ */ C(
298
+ /* @__PURE__ */ l(
260
299
  "path",
261
300
  {
262
301
  fillRule: "evenodd",
@@ -265,24 +304,31 @@ const d = {
265
304
  fill: "currentColor"
266
305
  }
267
306
  )
268
- ] }),
269
- // Approval status icons
270
- approved: /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C(
307
+ ] }) })
308
+ );
309
+ Z.displayName = "UserBroker";
310
+ const V = /* @__PURE__ */ r.forwardRef(
311
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ l(
271
312
  "path",
272
313
  {
273
314
  d: "M11 0C17.0751 0 22 4.92487 22 11C22 17.0751 17.0751 22 11 22C4.92487 22 0 17.0751 0 11C0 4.92487 4.92487 0 11 0ZM15.6094 7.20703C15.1716 6.87063 14.5437 6.953 14.207 7.39062L9.90137 12.9873L8.20703 11.293C7.81651 10.9024 7.18349 10.9024 6.79297 11.293C6.40244 11.6835 6.40244 12.3165 6.79297 12.707L9.29297 15.207C9.49636 15.4104 9.77743 15.5166 10.0645 15.498C10.3516 15.4794 10.6175 15.3375 10.793 15.1094L15.793 8.60938C16.1294 8.17164 16.047 7.54367 15.6094 7.20703Z",
274
315
  fill: "currentColor"
275
316
  }
276
- ) }),
277
- "pending-approval": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C(
317
+ ) }) })
318
+ );
319
+ V.displayName = "Approved";
320
+ const H = /* @__PURE__ */ r.forwardRef(
321
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ l(
278
322
  "path",
279
323
  {
280
324
  d: "M11 0C17.0751 0 22 4.92487 22 11C22 17.0751 17.0751 22 11 22C4.92487 22 0 17.0751 0 11C0 4.92487 4.92487 0 11 0ZM11 4C10.4478 4.00013 10 4.44782 10 5V11C10 11.3787 10.2141 11.7251 10.5527 11.8945L14.5527 13.8945C15.0467 14.1415 15.6475 13.9412 15.8945 13.4473C16.1415 12.9533 15.9412 12.3525 15.4473 12.1055L12 10.3818V5C12 4.44774 11.5523 4 11 4Z",
281
325
  fill: "currentColor"
282
326
  }
283
- ) }),
284
- // Info icon
285
- "info-filled": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C(
327
+ ) }) })
328
+ );
329
+ H.displayName = "PendingApproval";
330
+ const g = /* @__PURE__ */ r.forwardRef(
331
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ l(
286
332
  "path",
287
333
  {
288
334
  fillRule: "evenodd",
@@ -290,10 +336,12 @@ const d = {
290
336
  d: "M12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1ZM12 12C12.7594 12 13.375 12.6156 13.375 13.375V17.9583C13.375 18.7177 12.7594 19.3333 12 19.3333C11.2406 19.3333 10.625 18.7177 10.625 17.9583V13.375C10.625 12.6156 11.2406 12 12 12ZM12 4.66667C12.7594 4.66667 13.375 5.28228 13.375 6.04167V6.95833C13.375 7.71773 12.7594 8.33333 12 8.33333C11.2406 8.33333 10.625 7.71773 10.625 6.95833V6.04167C10.625 5.28228 11.2406 4.66667 12 4.66667Z",
291
337
  fill: "currentColor"
292
338
  }
293
- ) }),
294
- // Fixture status icons - Square variants (20x20 viewBox, offset by 2,2)
295
- "square-diamond": /* @__PURE__ */ l("g", { transform: "translate(2, 2)", children: [
296
- /* @__PURE__ */ C(
339
+ ) }) })
340
+ );
341
+ g.displayName = "InfoFilled";
342
+ const w = /* @__PURE__ */ r.forwardRef(
343
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(2, 2)", children: [
344
+ /* @__PURE__ */ l(
297
345
  "path",
298
346
  {
299
347
  fillRule: "evenodd",
@@ -302,39 +350,45 @@ const d = {
302
350
  fill: "currentColor"
303
351
  }
304
352
  ),
305
- /* @__PURE__ */ C(
353
+ /* @__PURE__ */ l(
306
354
  "path",
307
355
  {
308
356
  d: "M10.0004 4C10.3042 4 10.5919 4.13778 10.7816 4.375L14.7816 9.375C15.0738 9.74022 15.0738 10.2598 14.7816 10.625L10.7816 15.625C10.5919 15.8622 10.3042 16 10.0004 16C9.6966 16 9.4089 15.8622 9.21913 15.625L5.21913 10.625C4.92696 10.2598 4.92696 9.74022 5.21913 9.375L9.21913 4.375L9.2953 4.29102C9.48157 4.10575 9.73463 4 10.0004 4ZM7.28163 10L10.0004 13.3984L12.7191 10L10.0004 6.60156L7.28163 10Z",
309
357
  fill: "currentColor"
310
358
  }
311
359
  )
312
- ] }),
313
- "square-corner-check": /* @__PURE__ */ l("g", { transform: "translate(2, 2)", children: [
314
- /* @__PURE__ */ C(
360
+ ] }) })
361
+ );
362
+ w.displayName = "SquareDiamond";
363
+ const m = /* @__PURE__ */ r.forwardRef(
364
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(2, 2)", children: [
365
+ /* @__PURE__ */ l(
315
366
  "path",
316
367
  {
317
368
  d: "M17 0C18.6569 0 20 1.34315 20 3V10H18V3C18 2.44772 17.5523 2 17 2H3C2.44772 2 2 2.44772 2 3V17C2 17.5523 2.44772 18 3 18H10V20H3C1.34315 20 0 18.6569 0 17V3C0 1.34315 1.34315 0 3 0H17Z",
318
369
  fill: "currentColor"
319
370
  }
320
371
  ),
321
- /* @__PURE__ */ C(
372
+ /* @__PURE__ */ l(
322
373
  "path",
323
374
  {
324
375
  d: "M17.707 12.3906C18.0436 11.953 18.6716 11.8706 19.1093 12.207C19.5469 12.5436 19.6293 13.1716 19.2929 13.6093L15.2929 19.1093C15.1174 19.3374 14.8515 19.4794 14.5644 19.498C14.2773 19.5165 13.9963 19.4104 13.7929 19.207L11.2929 16.707C10.9024 16.3165 10.9024 15.6835 11.2929 15.2929C11.6834 14.9024 12.3164 14.9024 12.707 15.2929L14.4013 16.9873L17.707 12.3906Z",
325
376
  fill: "currentColor"
326
377
  }
327
378
  )
328
- ] }),
329
- "square-corner-plus": /* @__PURE__ */ l("g", { transform: "translate(2, 2)", children: [
330
- /* @__PURE__ */ C(
379
+ ] }) })
380
+ );
381
+ m.displayName = "SquareCornerCheck";
382
+ const B = /* @__PURE__ */ r.forwardRef(
383
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(2, 2)", children: [
384
+ /* @__PURE__ */ l(
331
385
  "path",
332
386
  {
333
387
  d: "M17 0C18.6569 0 20 1.34315 20 3V10H18V3C18 2.44772 17.5523 2 17 2H3C2.44772 2 2 2.44772 2 3V17C2 17.5523 2.44772 18 3 18H10V20H3C1.34315 20 0 18.6569 0 17V3C0 1.34315 1.34315 0 3 0H17Z",
334
388
  fill: "currentColor"
335
389
  }
336
390
  ),
337
- /* @__PURE__ */ C(
391
+ /* @__PURE__ */ l(
338
392
  "path",
339
393
  {
340
394
  fillRule: "evenodd",
@@ -343,7 +397,7 @@ const d = {
343
397
  fill: "currentColor"
344
398
  }
345
399
  ),
346
- /* @__PURE__ */ C(
400
+ /* @__PURE__ */ l(
347
401
  "path",
348
402
  {
349
403
  fillRule: "evenodd",
@@ -352,248 +406,48 @@ const d = {
352
406
  fill: "currentColor"
353
407
  }
354
408
  )
355
- ] }),
356
- "square-dashed-corner-plus": /* @__PURE__ */ l("g", { transform: "translate(2, 2)", children: [
357
- /* @__PURE__ */ C(
358
- "path",
359
- {
360
- fillRule: "evenodd",
361
- clipRule: "evenodd",
362
- d: "M0.87868 0.87868C1.44129 0.31607 2.20435 0 3 0C3.55228 0 4 0.447715 4 1C4 1.55228 3.55228 2 3 2C2.73478 2 2.48043 2.10536 2.29289 2.29289C2.10536 2.48043 2 2.73478 2 3C2 3.55228 1.55228 4 1 4C0.447715 4 0 3.55228 0 3C0 2.20435 0.31607 1.44129 0.87868 0.87868Z",
363
- fill: "currentColor"
364
- }
365
- ),
366
- /* @__PURE__ */ C(
367
- "path",
368
- {
369
- fillRule: "evenodd",
370
- clipRule: "evenodd",
371
- d: "M16 1C16 0.447715 16.4477 0 17 0C17.7956 0 18.5587 0.31607 19.1213 0.87868C19.6839 1.44129 20 2.20435 20 3C20 3.55228 19.5523 4 19 4C18.4477 4 18 3.55228 18 3C18 2.73478 17.8946 2.48043 17.7071 2.29289C17.5196 2.10536 17.2652 2 17 2C16.4477 2 16 1.55228 16 1Z",
372
- fill: "currentColor"
373
- }
374
- ),
375
- /* @__PURE__ */ C(
376
- "path",
377
- {
378
- fillRule: "evenodd",
379
- clipRule: "evenodd",
380
- d: "M1 16C1.55228 16 2 16.4477 2 17C2 17.2652 2.10536 17.5196 2.29289 17.7071C2.48043 17.8946 2.73478 18 3 18C3.55228 18 4 18.4477 4 19C4 19.5523 3.55228 20 3 20C2.20435 20 1.44129 19.6839 0.87868 19.1213C0.31607 18.5587 0 17.7956 0 17C0 16.4477 0.447715 16 1 16Z",
381
- fill: "currentColor"
382
- }
383
- ),
384
- /* @__PURE__ */ C(
385
- "path",
386
- {
387
- fillRule: "evenodd",
388
- clipRule: "evenodd",
389
- d: "M6 1C6 0.447715 6.44772 0 7 0H8C8.55228 0 9 0.447715 9 1C9 1.55228 8.55228 2 8 2H7C6.44772 2 6 1.55228 6 1Z",
390
- fill: "currentColor"
391
- }
392
- ),
393
- /* @__PURE__ */ C(
394
- "path",
395
- {
396
- fillRule: "evenodd",
397
- clipRule: "evenodd",
398
- d: "M6 19C6 18.4477 6.44772 18 7 18H8C8.55228 18 9 18.4477 9 19C9 19.5523 8.55228 20 8 20H7C6.44772 20 6 19.5523 6 19Z",
399
- fill: "currentColor"
400
- }
401
- ),
402
- /* @__PURE__ */ C(
403
- "path",
404
- {
405
- fillRule: "evenodd",
406
- clipRule: "evenodd",
407
- d: "M11 1C11 0.447715 11.4477 0 12 0H13C13.5523 0 14 0.447715 14 1C14 1.55228 13.5523 2 13 2H12C11.4477 2 11 1.55228 11 1Z",
408
- fill: "currentColor"
409
- }
410
- ),
411
- /* @__PURE__ */ C(
412
- "path",
413
- {
414
- fillRule: "evenodd",
415
- clipRule: "evenodd",
416
- d: "M1 6C1.55228 6 2 6.44772 2 7V8C2 8.55228 1.55228 9 1 9C0.447715 9 0 8.55228 0 8V7C0 6.44772 0.447715 6 1 6Z",
417
- fill: "currentColor"
418
- }
419
- ),
420
- /* @__PURE__ */ C(
421
- "path",
422
- {
423
- fillRule: "evenodd",
424
- clipRule: "evenodd",
425
- d: "M19 6C19.5523 6 20 6.44772 20 7V8C20 8.55228 19.5523 9 19 9C18.4477 9 18 8.55228 18 8V7C18 6.44772 18.4477 6 19 6Z",
426
- fill: "currentColor"
427
- }
428
- ),
429
- /* @__PURE__ */ C(
430
- "path",
431
- {
432
- fillRule: "evenodd",
433
- clipRule: "evenodd",
434
- d: "M1 11C1.55228 11 2 11.4477 2 12V13C2 13.5523 1.55228 14 1 14C0.447715 14 0 13.5523 0 13V12C0 11.4477 0.447715 11 1 11Z",
435
- fill: "currentColor"
436
- }
437
- ),
438
- /* @__PURE__ */ C(
439
- "path",
440
- {
441
- fillRule: "evenodd",
442
- clipRule: "evenodd",
443
- d: "M10 15C10 14.4477 10.4477 14 11 14H19C19.5523 14 20 14.4477 20 15C20 15.5523 19.5523 16 19 16H11C10.4477 16 10 15.5523 10 15Z",
444
- fill: "currentColor"
445
- }
446
- ),
447
- /* @__PURE__ */ C(
448
- "path",
449
- {
450
- fillRule: "evenodd",
451
- clipRule: "evenodd",
452
- d: "M15 10C15.5523 10 16 10.4477 16 11V19C16 19.5523 15.5523 20 15 20C14.4477 20 14 19.5523 14 19V11C14 10.4477 14.4477 10 15 10Z",
453
- fill: "currentColor"
454
- }
455
- )
456
- ] }),
457
- "square-dashed-chart-gantt": /* @__PURE__ */ l("g", { transform: "translate(2, 2)", children: [
458
- /* @__PURE__ */ C(
459
- "path",
460
- {
461
- fillRule: "evenodd",
462
- clipRule: "evenodd",
463
- d: "M0.87868 0.87868C1.44129 0.31607 2.20435 0 3 0C3.55228 0 4 0.447715 4 1C4 1.55228 3.55228 2 3 2C2.73478 2 2.48043 2.10536 2.29289 2.29289C2.10536 2.48043 2 2.73478 2 3C2 3.55228 1.55228 4 1 4C0.447715 4 0 3.55228 0 3C0 2.20435 0.31607 1.44129 0.87868 0.87868Z",
464
- fill: "currentColor"
465
- }
466
- ),
467
- /* @__PURE__ */ C(
468
- "path",
469
- {
470
- fillRule: "evenodd",
471
- clipRule: "evenodd",
472
- d: "M16 1C16 0.447715 16.4477 0 17 0C17.7956 0 18.5587 0.31607 19.1213 0.87868C19.6839 1.44129 20 2.20435 20 3C20 3.55228 19.5523 4 19 4C18.4477 4 18 3.55228 18 3C18 2.73478 17.8946 2.48043 17.7071 2.29289C17.5196 2.10536 17.2652 2 17 2C16.4477 2 16 1.55228 16 1Z",
473
- fill: "currentColor"
474
- }
475
- ),
476
- /* @__PURE__ */ C(
477
- "path",
478
- {
479
- fillRule: "evenodd",
480
- clipRule: "evenodd",
481
- d: "M19 16C19.5523 16 20 16.4477 20 17C20 17.7957 19.6839 18.5587 19.1213 19.1213C18.5587 19.6839 17.7957 20 17 20C16.4477 20 16 19.5523 16 19C16 18.4477 16.4477 18 17 18C17.2652 18 17.5196 17.8946 17.7071 17.7071C17.8946 17.5196 18 17.2652 18 17C18 16.4477 18.4477 16 19 16Z",
482
- fill: "currentColor"
483
- }
484
- ),
485
- /* @__PURE__ */ C(
486
- "path",
487
- {
488
- fillRule: "evenodd",
489
- clipRule: "evenodd",
490
- d: "M1 16C1.55228 16 2 16.4477 2 17C2 17.2652 2.10536 17.5196 2.29289 17.7071C2.48043 17.8946 2.73478 18 3 18C3.55228 18 4 18.4477 4 19C4 19.5523 3.55228 20 3 20C2.20435 20 1.44129 19.6839 0.87868 19.1213C0.31607 18.5587 0 17.7956 0 17C0 16.4477 0.447715 16 1 16Z",
491
- fill: "currentColor"
492
- }
493
- ),
494
- /* @__PURE__ */ C(
495
- "path",
496
- {
497
- fillRule: "evenodd",
498
- clipRule: "evenodd",
499
- d: "M6 1C6 0.447715 6.44772 0 7 0H8C8.55228 0 9 0.447715 9 1C9 1.55228 8.55228 2 8 2H7C6.44772 2 6 1.55228 6 1Z",
500
- fill: "currentColor"
501
- }
502
- ),
503
- /* @__PURE__ */ C(
504
- "path",
505
- {
506
- fillRule: "evenodd",
507
- clipRule: "evenodd",
508
- d: "M6 19C6 18.4477 6.44772 18 7 18H8C8.55228 18 9 18.4477 9 19C9 19.5523 8.55228 20 8 20H7C6.44772 20 6 19.5523 6 19Z",
509
- fill: "currentColor"
510
- }
511
- ),
512
- /* @__PURE__ */ C(
513
- "path",
514
- {
515
- fillRule: "evenodd",
516
- clipRule: "evenodd",
517
- d: "M11 1C11 0.447715 11.4477 0 12 0H13C13.5523 0 14 0.447715 14 1C14 1.55228 13.5523 2 13 2H12C11.4477 2 11 1.55228 11 1Z",
518
- fill: "currentColor"
519
- }
520
- ),
521
- /* @__PURE__ */ C(
522
- "path",
523
- {
524
- fillRule: "evenodd",
525
- clipRule: "evenodd",
526
- d: "M11 19C11 18.4477 11.4477 18 12 18H13C13.5523 18 14 18.4477 14 19C14 19.5523 13.5523 20 13 20H12C11.4477 20 11 19.5523 11 19Z",
527
- fill: "currentColor"
528
- }
529
- ),
530
- /* @__PURE__ */ C(
531
- "path",
532
- {
533
- fillRule: "evenodd",
534
- clipRule: "evenodd",
535
- d: "M1 6C1.55228 6 2 6.44772 2 7V8C2 8.55228 1.55228 9 1 9C0.447715 9 0 8.55228 0 8V7C0 6.44772 0.447715 6 1 6Z",
536
- fill: "currentColor"
537
- }
538
- ),
539
- /* @__PURE__ */ C(
540
- "path",
541
- {
542
- fillRule: "evenodd",
543
- clipRule: "evenodd",
544
- d: "M19 6C19.5523 6 20 6.44772 20 7V8C20 8.55228 19.5523 9 19 9C18.4477 9 18 8.55228 18 8V7C18 6.44772 18.4477 6 19 6Z",
545
- fill: "currentColor"
546
- }
547
- ),
548
- /* @__PURE__ */ C(
549
- "path",
550
- {
551
- fillRule: "evenodd",
552
- clipRule: "evenodd",
553
- d: "M1 11C1.55228 11 2 11.4477 2 12V13C2 13.5523 1.55228 14 1 14C0.447715 14 0 13.5523 0 13V12C0 11.4477 0.447715 11 1 11Z",
554
- fill: "currentColor"
555
- }
556
- ),
557
- /* @__PURE__ */ C(
558
- "path",
559
- {
560
- fillRule: "evenodd",
561
- clipRule: "evenodd",
562
- d: "M19 11C19.5523 11 20 11.4477 20 12V13C20 13.5523 19.5523 14 19 14C18.4477 14 18 13.5523 18 13V12C18 11.4477 18.4477 11 19 11Z",
563
- fill: "currentColor"
564
- }
565
- ),
566
- /* @__PURE__ */ C(
567
- "path",
568
- {
569
- fillRule: "evenodd",
570
- clipRule: "evenodd",
571
- d: "M6 6C6 5.44772 6.44772 5 7 5H14C14.5523 5 15 5.44772 15 6C15 6.55228 14.5523 7 14 7H7C6.44772 7 6 6.55228 6 6Z",
572
- fill: "currentColor"
573
- }
574
- ),
575
- /* @__PURE__ */ C(
576
- "path",
577
- {
578
- fillRule: "evenodd",
579
- clipRule: "evenodd",
580
- d: "M5 10C5 9.44772 5.44772 9 6 9H12C12.5523 9 13 9.44772 13 10C13 10.5523 12.5523 11 12 11H6C5.44772 11 5 10.5523 5 10Z",
581
- fill: "currentColor"
582
- }
583
- ),
584
- /* @__PURE__ */ C(
585
- "path",
586
- {
587
- fillRule: "evenodd",
588
- clipRule: "evenodd",
589
- d: "M8 14C8 13.4477 8.44772 13 9 13H14C14.5523 13 15 13.4477 15 14C15 14.5523 14.5523 15 14 15H9C8.44772 15 8 14.5523 8 14Z",
590
- fill: "currentColor"
591
- }
592
- )
593
- ] }),
594
- // Fixture status icons - Circle variants (22x22 viewBox, offset by 1,1)
595
- "circle-dot-2": /* @__PURE__ */ l("g", { transform: "translate(1, 1)", children: [
596
- /* @__PURE__ */ C(
409
+ ] }) })
410
+ );
411
+ B.displayName = "SquareCornerPlus";
412
+ const x = /* @__PURE__ */ r.forwardRef(
413
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(2, 2)", children: [
414
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0.87868 0.87868C1.44129 0.31607 2.20435 0 3 0C3.55228 0 4 0.447715 4 1C4 1.55228 3.55228 2 3 2C2.73478 2 2.48043 2.10536 2.29289 2.29289C2.10536 2.48043 2 2.73478 2 3C2 3.55228 1.55228 4 1 4C0.447715 4 0 3.55228 0 3C0 2.20435 0.31607 1.44129 0.87868 0.87868Z", fill: "currentColor" }),
415
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16 1C16 0.447715 16.4477 0 17 0C17.7956 0 18.5587 0.31607 19.1213 0.87868C19.6839 1.44129 20 2.20435 20 3C20 3.55228 19.5523 4 19 4C18.4477 4 18 3.55228 18 3C18 2.73478 17.8946 2.48043 17.7071 2.29289C17.5196 2.10536 17.2652 2 17 2C16.4477 2 16 1.55228 16 1Z", fill: "currentColor" }),
416
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 16C1.55228 16 2 16.4477 2 17C2 17.2652 2.10536 17.5196 2.29289 17.7071C2.48043 17.8946 2.73478 18 3 18C3.55228 18 4 18.4477 4 19C4 19.5523 3.55228 20 3 20C2.20435 20 1.44129 19.6839 0.87868 19.1213C0.31607 18.5587 0 17.7956 0 17C0 16.4477 0.447715 16 1 16Z", fill: "currentColor" }),
417
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 1C6 0.447715 6.44772 0 7 0H8C8.55228 0 9 0.447715 9 1C9 1.55228 8.55228 2 8 2H7C6.44772 2 6 1.55228 6 1Z", fill: "currentColor" }),
418
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 19C6 18.4477 6.44772 18 7 18H8C8.55228 18 9 18.4477 9 19C9 19.5523 8.55228 20 8 20H7C6.44772 20 6 19.5523 6 19Z", fill: "currentColor" }),
419
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11 1C11 0.447715 11.4477 0 12 0H13C13.5523 0 14 0.447715 14 1C14 1.55228 13.5523 2 13 2H12C11.4477 2 11 1.55228 11 1Z", fill: "currentColor" }),
420
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 6C1.55228 6 2 6.44772 2 7V8C2 8.55228 1.55228 9 1 9C0.447715 9 0 8.55228 0 8V7C0 6.44772 0.447715 6 1 6Z", fill: "currentColor" }),
421
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19 6C19.5523 6 20 6.44772 20 7V8C20 8.55228 19.5523 9 19 9C18.4477 9 18 8.55228 18 8V7C18 6.44772 18.4477 6 19 6Z", fill: "currentColor" }),
422
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 11C1.55228 11 2 11.4477 2 12V13C2 13.5523 1.55228 14 1 14C0.447715 14 0 13.5523 0 13V12C0 11.4477 0.447715 11 1 11Z", fill: "currentColor" }),
423
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10 15C10 14.4477 10.4477 14 11 14H19C19.5523 14 20 14.4477 20 15C20 15.5523 19.5523 16 19 16H11C10.4477 16 10 15.5523 10 15Z", fill: "currentColor" }),
424
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15 10C15.5523 10 16 10.4477 16 11V19C16 19.5523 15.5523 20 15 20C14.4477 20 14 19.5523 14 19V11C14 10.4477 14.4477 10 15 10Z", fill: "currentColor" })
425
+ ] }) })
426
+ );
427
+ x.displayName = "SquareDashedCornerPlus";
428
+ const y = /* @__PURE__ */ r.forwardRef(
429
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(2, 2)", children: [
430
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0.87868 0.87868C1.44129 0.31607 2.20435 0 3 0C3.55228 0 4 0.447715 4 1C4 1.55228 3.55228 2 3 2C2.73478 2 2.48043 2.10536 2.29289 2.29289C2.10536 2.48043 2 2.73478 2 3C2 3.55228 1.55228 4 1 4C0.447715 4 0 3.55228 0 3C0 2.20435 0.31607 1.44129 0.87868 0.87868Z", fill: "currentColor" }),
431
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16 1C16 0.447715 16.4477 0 17 0C17.7956 0 18.5587 0.31607 19.1213 0.87868C19.6839 1.44129 20 2.20435 20 3C20 3.55228 19.5523 4 19 4C18.4477 4 18 3.55228 18 3C18 2.73478 17.8946 2.48043 17.7071 2.29289C17.5196 2.10536 17.2652 2 17 2C16.4477 2 16 1.55228 16 1Z", fill: "currentColor" }),
432
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19 16C19.5523 16 20 16.4477 20 17C20 17.7957 19.6839 18.5587 19.1213 19.1213C18.5587 19.6839 17.7957 20 17 20C16.4477 20 16 19.5523 16 19C16 18.4477 16.4477 18 17 18C17.2652 18 17.5196 17.8946 17.7071 17.7071C17.8946 17.5196 18 17.2652 18 17C18 16.4477 18.4477 16 19 16Z", fill: "currentColor" }),
433
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 16C1.55228 16 2 16.4477 2 17C2 17.2652 2.10536 17.5196 2.29289 17.7071C2.48043 17.8946 2.73478 18 3 18C3.55228 18 4 18.4477 4 19C4 19.5523 3.55228 20 3 20C2.20435 20 1.44129 19.6839 0.87868 19.1213C0.31607 18.5587 0 17.7956 0 17C0 16.4477 0.447715 16 1 16Z", fill: "currentColor" }),
434
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 1C6 0.447715 6.44772 0 7 0H8C8.55228 0 9 0.447715 9 1C9 1.55228 8.55228 2 8 2H7C6.44772 2 6 1.55228 6 1Z", fill: "currentColor" }),
435
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 19C6 18.4477 6.44772 18 7 18H8C8.55228 18 9 18.4477 9 19C9 19.5523 8.55228 20 8 20H7C6.44772 20 6 19.5523 6 19Z", fill: "currentColor" }),
436
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11 1C11 0.447715 11.4477 0 12 0H13C13.5523 0 14 0.447715 14 1C14 1.55228 13.5523 2 13 2H12C11.4477 2 11 1.55228 11 1Z", fill: "currentColor" }),
437
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11 19C11 18.4477 11.4477 18 12 18H13C13.5523 18 14 18.4477 14 19C14 19.5523 13.5523 20 13 20H12C11.4477 20 11 19.5523 11 19Z", fill: "currentColor" }),
438
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 6C1.55228 6 2 6.44772 2 7V8C2 8.55228 1.55228 9 1 9C0.447715 9 0 8.55228 0 8V7C0 6.44772 0.447715 6 1 6Z", fill: "currentColor" }),
439
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19 6C19.5523 6 20 6.44772 20 7V8C20 8.55228 19.5523 9 19 9C18.4477 9 18 8.55228 18 8V7C18 6.44772 18.4477 6 19 6Z", fill: "currentColor" }),
440
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1 11C1.55228 11 2 11.4477 2 12V13C2 13.5523 1.55228 14 1 14C0.447715 14 0 13.5523 0 13V12C0 11.4477 0.447715 11 1 11Z", fill: "currentColor" }),
441
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19 11C19.5523 11 20 11.4477 20 12V13C20 13.5523 19.5523 14 19 14C18.4477 14 18 13.5523 18 13V12C18 11.4477 18.4477 11 19 11Z", fill: "currentColor" }),
442
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 6C6 5.44772 6.44772 5 7 5H14C14.5523 5 15 5.44772 15 6C15 6.55228 14.5523 7 14 7H7C6.44772 7 6 6.55228 6 6Z", fill: "currentColor" }),
443
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 10C5 9.44772 5.44772 9 6 9H12C12.5523 9 13 9.44772 13 10C13 10.5523 12.5523 11 12 11H6C5.44772 11 5 10.5523 5 10Z", fill: "currentColor" }),
444
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8 14C8 13.4477 8.44772 13 9 13H14C14.5523 13 15 13.4477 15 14C15 14.5523 14.5523 15 14 15H9C8.44772 15 8 14.5523 8 14Z", fill: "currentColor" })
445
+ ] }) })
446
+ );
447
+ y.displayName = "SquareDashedChartGantt";
448
+ const N = /* @__PURE__ */ r.forwardRef(
449
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(1, 1)", children: [
450
+ /* @__PURE__ */ l(
597
451
  "path",
598
452
  {
599
453
  fillRule: "evenodd",
@@ -602,16 +456,19 @@ const d = {
602
456
  fill: "currentColor"
603
457
  }
604
458
  ),
605
- /* @__PURE__ */ C(
459
+ /* @__PURE__ */ l(
606
460
  "path",
607
461
  {
608
462
  d: "M14 11C14 12.6569 12.6569 14 11 14C9.34315 14 8 12.6569 8 11C8 9.34315 9.34315 8 11 8C12.6569 8 14 9.34315 14 11Z",
609
463
  fill: "currentColor"
610
464
  }
611
465
  )
612
- ] }),
613
- "circle-diamond": /* @__PURE__ */ l("g", { transform: "translate(1, 1)", children: [
614
- /* @__PURE__ */ C(
466
+ ] }) })
467
+ );
468
+ N.displayName = "CircleDot2";
469
+ const D = /* @__PURE__ */ r.forwardRef(
470
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(1, 1)", children: [
471
+ /* @__PURE__ */ l(
615
472
  "path",
616
473
  {
617
474
  fillRule: "evenodd",
@@ -620,16 +477,19 @@ const d = {
620
477
  fill: "currentColor"
621
478
  }
622
479
  ),
623
- /* @__PURE__ */ C(
480
+ /* @__PURE__ */ l(
624
481
  "path",
625
482
  {
626
483
  d: "M11 5C11.3038 5 11.5915 5.13778 11.7812 5.375L15.7812 10.375C16.0734 10.7402 16.0734 11.2598 15.7812 11.625L11.7812 16.625C11.5915 16.8622 11.3038 17 11 17C10.6962 17 10.4085 16.8622 10.2188 16.625L6.21875 11.625C5.92658 11.2598 5.92658 10.7402 6.21875 10.375L10.2188 5.375L10.2949 5.29102C10.4812 5.10575 10.7343 5 11 5ZM8.28125 11L11 14.3984L13.7188 11L11 7.60156L8.28125 11Z",
627
484
  fill: "currentColor"
628
485
  }
629
486
  )
630
- ] }),
631
- "circle-check-2": /* @__PURE__ */ l("g", { transform: "translate(1, 1)", children: [
632
- /* @__PURE__ */ C(
487
+ ] }) })
488
+ );
489
+ D.displayName = "CircleDiamond";
490
+ const k = /* @__PURE__ */ r.forwardRef(
491
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(1, 1)", children: [
492
+ /* @__PURE__ */ l(
633
493
  "path",
634
494
  {
635
495
  fillRule: "evenodd",
@@ -638,186 +498,54 @@ const d = {
638
498
  fill: "currentColor"
639
499
  }
640
500
  ),
641
- /* @__PURE__ */ C(
501
+ /* @__PURE__ */ l(
642
502
  "path",
643
503
  {
644
504
  d: "M14.207 7.39063C14.5437 6.953 15.1716 6.87064 15.6094 7.20703C16.047 7.54367 16.1294 8.17164 15.793 8.60938L10.793 15.1094C10.6175 15.3375 10.3516 15.4794 10.0645 15.498C9.77742 15.5166 9.49636 15.4104 9.29297 15.207L6.79297 12.707C6.40244 12.3165 6.40244 11.6835 6.79297 11.293C7.18349 10.9024 7.81651 10.9024 8.20703 11.293L9.90137 12.9873L14.207 7.39063Z",
645
505
  fill: "currentColor"
646
506
  }
647
507
  )
648
- ] }),
649
- "circle-dashed-arrow-up": /* @__PURE__ */ l("g", { transform: "translate(1, 1)", children: [
650
- /* @__PURE__ */ C(
651
- "path",
652
- {
653
- fillRule: "evenodd",
654
- clipRule: "evenodd",
655
- d: "M12.7102 2.16394C11.5806 1.94535 10.4197 1.94535 9.29016 2.16394C8.74793 2.26888 8.22331 1.91438 8.11837 1.37216C8.01344 0.829935 8.36793 0.305309 8.91016 0.200375C10.2907 -0.0667917 11.7096 -0.0667917 13.0902 0.200375C13.6324 0.305309 13.9869 0.829935 13.8819 1.37216C13.777 1.91438 13.2524 2.26888 12.7102 2.16394Z",
656
- fill: "currentColor"
657
- }
658
- ),
659
- /* @__PURE__ */ C(
660
- "path",
661
- {
662
- fillRule: "evenodd",
663
- clipRule: "evenodd",
664
- d: "M8.11837 20.6282C8.22331 20.0859 8.74793 19.7314 9.29016 19.8364C10.4197 20.055 11.5806 20.055 12.7102 19.8364C13.2524 19.7314 13.777 20.0859 13.8819 20.6282C13.9869 21.1704 13.6324 21.695 13.0902 21.7999C11.7096 22.0671 10.2907 22.0671 8.91016 21.7999C8.36793 21.695 8.01344 21.1704 8.11837 20.6282Z",
665
- fill: "currentColor"
666
- }
667
- ),
668
- /* @__PURE__ */ C(
669
- "path",
670
- {
671
- fillRule: "evenodd",
672
- clipRule: "evenodd",
673
- d: "M15.7813 2.16026C16.0911 1.70304 16.7129 1.58354 17.1701 1.89333C18.3377 2.68448 19.3423 3.69279 20.1291 4.86333C20.4372 5.32169 20.3154 5.94303 19.857 6.25113C19.3987 6.55923 18.7773 6.43741 18.4692 5.97905C17.8255 5.02134 17.0035 4.19635 16.0482 3.54905C15.591 3.23926 15.4715 2.61747 15.7813 2.16026Z",
674
- fill: "currentColor"
675
- }
676
- ),
677
- /* @__PURE__ */ C(
678
- "path",
679
- {
680
- fillRule: "evenodd",
681
- clipRule: "evenodd",
682
- d: "M1.37216 8.1184C1.91438 8.22334 2.26888 8.74796 2.16394 9.29019C1.94535 10.4197 1.94535 11.5807 2.16394 12.7102C2.26888 13.2524 1.91438 13.777 1.37216 13.882C0.829935 13.9869 0.305309 13.6324 0.200375 13.0902C-0.0667917 11.7097 -0.0667917 10.2907 0.200375 8.91019C0.305309 8.36796 0.829935 8.01347 1.37216 8.1184Z",
683
- fill: "currentColor"
684
- }
685
- ),
686
- /* @__PURE__ */ C(
687
- "path",
688
- {
689
- fillRule: "evenodd",
690
- clipRule: "evenodd",
691
- d: "M19.8401 15.7813C20.2973 16.0911 20.4168 16.7129 20.107 17.1701C19.3159 18.3377 18.3076 19.3423 17.137 20.1291C16.6787 20.4372 16.0573 20.3154 15.7492 19.857C15.4411 19.3987 15.5629 18.7773 16.0213 18.4692C16.979 17.8255 17.804 17.0035 18.4513 16.0482C18.7611 15.591 19.3829 15.4715 19.8401 15.7813Z",
692
- fill: "currentColor"
693
- }
694
- ),
695
- /* @__PURE__ */ C(
696
- "path",
697
- {
698
- fillRule: "evenodd",
699
- clipRule: "evenodd",
700
- d: "M20.6282 8.1184C21.1704 8.01347 21.695 8.36796 21.7999 8.91019C22.0671 10.2907 22.0671 11.7097 21.7999 13.0902C21.695 13.6324 21.1704 13.9869 20.6282 13.882C20.0859 13.777 19.7314 13.2524 19.8364 12.7102C20.055 11.5807 20.055 10.4197 19.8364 9.29019C19.7314 8.74796 20.0859 8.22334 20.6282 8.1184Z",
701
- fill: "currentColor"
702
- }
703
- ),
704
- /* @__PURE__ */ C(
705
- "path",
706
- {
707
- fillRule: "evenodd",
708
- clipRule: "evenodd",
709
- d: "M6.25109 2.14334C6.55919 2.6017 6.43738 3.22303 5.97902 3.53113C5.0213 4.17488 4.19632 4.99681 3.54902 5.95213C3.23922 6.40935 2.61744 6.52885 2.16022 6.21906C1.70301 5.90926 1.5835 5.28747 1.8933 4.83026C2.68445 3.66264 3.69276 2.65807 4.8633 1.87126C5.32166 1.56316 5.943 1.68498 6.25109 2.14334Z",
710
- fill: "currentColor"
711
- }
712
- ),
713
- /* @__PURE__ */ C(
714
- "path",
715
- {
716
- fillRule: "evenodd",
717
- clipRule: "evenodd",
718
- d: "M2.1433 15.7492C2.60166 15.4411 3.223 15.5629 3.53109 16.0213C4.17484 16.979 4.99677 17.804 5.95209 18.4513C6.40931 18.7611 6.52881 19.3829 6.21902 19.8401C5.90922 20.2973 5.28744 20.4168 4.83022 20.107C3.66261 19.3159 2.65803 18.3076 1.87122 17.137C1.56312 16.6787 1.68494 16.0573 2.1433 15.7492Z",
719
- fill: "currentColor"
720
- }
721
- ),
722
- /* @__PURE__ */ C(
723
- "path",
724
- {
725
- d: "M10.0001 16.1253V8.78448L7.90832 10.8148C7.46247 11.2474 6.75021 11.2371 6.3175 10.7913C5.88487 10.3455 5.8961 9.6332 6.34192 9.2005L10.3419 5.31769L10.4259 5.24347C10.8633 4.89588 11.4991 4.92079 11.9083 5.31769L15.9083 9.2005C16.3541 9.6332 16.3654 10.3455 15.9327 10.7913C15.5 11.2371 14.7878 11.2474 14.3419 10.8148L12.2501 8.78448V16.1253C12.2501 16.7466 11.7464 17.2503 11.1251 17.2503C10.5038 17.2503 10.0001 16.7466 10.0001 16.1253Z",
726
- fill: "currentColor"
727
- }
728
- )
729
- ] }),
730
- "circle-dashed-arrow-down": /* @__PURE__ */ l("g", { transform: "translate(1, 1)", children: [
731
- /* @__PURE__ */ C(
732
- "path",
733
- {
734
- fillRule: "evenodd",
735
- clipRule: "evenodd",
736
- d: "M12.7102 2.16394C11.5806 1.94535 10.4197 1.94535 9.29016 2.16394C8.74793 2.26888 8.22331 1.91438 8.11837 1.37216C8.01344 0.829935 8.36793 0.305309 8.91016 0.200375C10.2907 -0.0667917 11.7096 -0.0667917 13.0902 0.200375C13.6324 0.305309 13.9869 0.829935 13.8819 1.37216C13.777 1.91438 13.2524 2.26888 12.7102 2.16394Z",
737
- fill: "currentColor"
738
- }
739
- ),
740
- /* @__PURE__ */ C(
741
- "path",
742
- {
743
- fillRule: "evenodd",
744
- clipRule: "evenodd",
745
- d: "M8.11837 20.6282C8.22331 20.0859 8.74793 19.7314 9.29016 19.8364C10.4197 20.055 11.5806 20.055 12.7102 19.8364C13.2524 19.7314 13.777 20.0859 13.8819 20.6282C13.9869 21.1704 13.6324 21.695 13.0902 21.7999C11.7096 22.0671 10.2907 22.0671 8.91016 21.7999C8.36793 21.695 8.01344 21.1704 8.11837 20.6282Z",
746
- fill: "currentColor"
747
- }
748
- ),
749
- /* @__PURE__ */ C(
750
- "path",
751
- {
752
- fillRule: "evenodd",
753
- clipRule: "evenodd",
754
- d: "M15.7813 2.16026C16.0911 1.70304 16.7129 1.58354 17.1701 1.89333C18.3377 2.68448 19.3423 3.69279 20.1291 4.86333C20.4372 5.32169 20.3154 5.94303 19.857 6.25113C19.3987 6.55923 18.7773 6.43741 18.4692 5.97905C17.8255 5.02134 17.0035 4.19635 16.0482 3.54905C15.591 3.23926 15.4715 2.61747 15.7813 2.16026Z",
755
- fill: "currentColor"
756
- }
757
- ),
758
- /* @__PURE__ */ C(
759
- "path",
760
- {
761
- fillRule: "evenodd",
762
- clipRule: "evenodd",
763
- d: "M1.37216 8.1184C1.91438 8.22334 2.26888 8.74796 2.16394 9.29019C1.94535 10.4197 1.94535 11.5807 2.16394 12.7102C2.26888 13.2524 1.91438 13.777 1.37216 13.882C0.829935 13.9869 0.305309 13.6324 0.200375 13.0902C-0.0667917 11.7097 -0.0667917 10.2907 0.200375 8.91019C0.305309 8.36796 0.829935 8.01347 1.37216 8.1184Z",
764
- fill: "currentColor"
765
- }
766
- ),
767
- /* @__PURE__ */ C(
768
- "path",
769
- {
770
- fillRule: "evenodd",
771
- clipRule: "evenodd",
772
- d: "M19.8401 15.7813C20.2973 16.0911 20.4168 16.7129 20.107 17.1701C19.3159 18.3377 18.3076 19.3423 17.137 20.1291C16.6787 20.4372 16.0573 20.3154 15.7492 19.857C15.4411 19.3987 15.5629 18.7773 16.0213 18.4692C16.979 17.8255 17.804 17.0035 18.4513 16.0482C18.7611 15.591 19.3829 15.4715 19.8401 15.7813Z",
773
- fill: "currentColor"
774
- }
775
- ),
776
- /* @__PURE__ */ C(
777
- "path",
778
- {
779
- fillRule: "evenodd",
780
- clipRule: "evenodd",
781
- d: "M20.6282 8.1184C21.1704 8.01347 21.695 8.36796 21.7999 8.91019C22.0671 10.2907 22.0671 11.7097 21.7999 13.0902C21.695 13.6324 21.1704 13.9869 20.6282 13.882C20.0859 13.777 19.7314 13.2524 19.8364 12.7102C20.055 11.5807 20.055 10.4197 19.8364 9.29019C19.7314 8.74796 20.0859 8.22334 20.6282 8.1184Z",
782
- fill: "currentColor"
783
- }
784
- ),
785
- /* @__PURE__ */ C(
786
- "path",
787
- {
788
- fillRule: "evenodd",
789
- clipRule: "evenodd",
790
- d: "M6.25109 2.14334C6.55919 2.6017 6.43738 3.22303 5.97902 3.53113C5.0213 4.17488 4.19632 4.99681 3.54902 5.95213C3.23922 6.40935 2.61744 6.52885 2.16022 6.21906C1.70301 5.90926 1.5835 5.28747 1.8933 4.83026C2.68445 3.66264 3.69276 2.65807 4.8633 1.87126C5.32166 1.56316 5.943 1.68498 6.25109 2.14334Z",
791
- fill: "currentColor"
792
- }
793
- ),
794
- /* @__PURE__ */ C(
795
- "path",
796
- {
797
- fillRule: "evenodd",
798
- clipRule: "evenodd",
799
- d: "M2.1433 15.7492C2.60166 15.4411 3.223 15.5629 3.53109 16.0213C4.17484 16.979 4.99677 17.804 5.95209 18.4513C6.40931 18.7611 6.52881 19.3829 6.21902 19.8401C5.90922 20.2973 5.28744 20.4168 4.83022 20.107C3.66261 19.3159 2.65803 18.3076 1.87122 17.137C1.56312 16.6787 1.68494 16.0573 2.1433 15.7492Z",
800
- fill: "currentColor"
801
- }
802
- ),
803
- /* @__PURE__ */ C(
804
- "path",
805
- {
806
- d: "M12.2501 6.12516L12.2501 13.466L14.3419 11.4357C14.7878 11.003 15.5 11.0133 15.9327 11.4591C16.3654 11.905 16.3541 12.6173 15.9083 13.05L11.9083 16.9328L11.8243 17.007C11.387 17.3546 10.7512 17.3297 10.3419 16.9328L6.34192 13.05C5.8961 12.6173 5.88487 11.905 6.3175 11.4591C6.75021 11.0133 7.46247 11.003 7.90832 11.4357L10.0001 13.466V6.12516C10.0001 5.50384 10.5038 5.00016 11.1251 5.00016C11.7464 5.00016 12.2501 5.50384 12.2501 6.12516Z",
807
- fill: "currentColor"
808
- }
809
- )
810
- ] }),
811
- // Fixture status icons - Hexagon variants (19.05x22 viewBox, offset by 2.47,1)
812
- "hexagon-minus": /* @__PURE__ */ l("g", { transform: "translate(2.47, 1)", children: [
813
- /* @__PURE__ */ C(
508
+ ] }) })
509
+ );
510
+ k.displayName = "CircleCheck2";
511
+ const S = /* @__PURE__ */ r.forwardRef(
512
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(1, 1)", children: [
513
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.7102 2.16394C11.5806 1.94535 10.4197 1.94535 9.29016 2.16394C8.74793 2.26888 8.22331 1.91438 8.11837 1.37216C8.01344 0.829935 8.36793 0.305309 8.91016 0.200375C10.2907 -0.0667917 11.7096 -0.0667917 13.0902 0.200375C13.6324 0.305309 13.9869 0.829935 13.8819 1.37216C13.777 1.91438 13.2524 2.26888 12.7102 2.16394Z", fill: "currentColor" }),
514
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.11837 20.6282C8.22331 20.0859 8.74793 19.7314 9.29016 19.8364C10.4197 20.055 11.5806 20.055 12.7102 19.8364C13.2524 19.7314 13.777 20.0859 13.8819 20.6282C13.9869 21.1704 13.6324 21.695 13.0902 21.7999C11.7096 22.0671 10.2907 22.0671 8.91016 21.7999C8.36793 21.695 8.01344 21.1704 8.11837 20.6282Z", fill: "currentColor" }),
515
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15.7813 2.16026C16.0911 1.70304 16.7129 1.58354 17.1701 1.89333C18.3377 2.68448 19.3423 3.69279 20.1291 4.86333C20.4372 5.32169 20.3154 5.94303 19.857 6.25113C19.3987 6.55923 18.7773 6.43741 18.4692 5.97905C17.8255 5.02134 17.0035 4.19635 16.0482 3.54905C15.591 3.23926 15.4715 2.61747 15.7813 2.16026Z", fill: "currentColor" }),
516
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1.37216 8.1184C1.91438 8.22334 2.26888 8.74796 2.16394 9.29019C1.94535 10.4197 1.94535 11.5807 2.16394 12.7102C2.26888 13.2524 1.91438 13.777 1.37216 13.882C0.829935 13.9869 0.305309 13.6324 0.200375 13.0902C-0.0667917 11.7097 -0.0667917 10.2907 0.200375 8.91019C0.305309 8.36796 0.829935 8.01347 1.37216 8.1184Z", fill: "currentColor" }),
517
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19.8401 15.7813C20.2973 16.0911 20.4168 16.7129 20.107 17.1701C19.3159 18.3377 18.3076 19.3423 17.137 20.1291C16.6787 20.4372 16.0573 20.3154 15.7492 19.857C15.4411 19.3987 15.5629 18.7773 16.0213 18.4692C16.979 17.8255 17.804 17.0035 18.4513 16.0482C18.7611 15.591 19.3829 15.4715 19.8401 15.7813Z", fill: "currentColor" }),
518
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M20.6282 8.1184C21.1704 8.01347 21.695 8.36796 21.7999 8.91019C22.0671 10.2907 22.0671 11.7097 21.7999 13.0902C21.695 13.6324 21.1704 13.9869 20.6282 13.882C20.0859 13.777 19.7314 13.2524 19.8364 12.7102C20.055 11.5807 20.055 10.4197 19.8364 9.29019C19.7314 8.74796 20.0859 8.22334 20.6282 8.1184Z", fill: "currentColor" }),
519
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.25109 2.14334C6.55919 2.6017 6.43738 3.22303 5.97902 3.53113C5.0213 4.17488 4.19632 4.99681 3.54902 5.95213C3.23922 6.40935 2.61744 6.52885 2.16022 6.21906C1.70301 5.90926 1.5835 5.28747 1.8933 4.83026C2.68445 3.66264 3.69276 2.65807 4.8633 1.87126C5.32166 1.56316 5.943 1.68498 6.25109 2.14334Z", fill: "currentColor" }),
520
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.1433 15.7492C2.60166 15.4411 3.223 15.5629 3.53109 16.0213C4.17484 16.979 4.99677 17.804 5.95209 18.4513C6.40931 18.7611 6.52881 19.3829 6.21902 19.8401C5.90922 20.2973 5.28744 20.4168 4.83022 20.107C3.66261 19.3159 2.65803 18.3076 1.87122 17.137C1.56312 16.6787 1.68494 16.0573 2.1433 15.7492Z", fill: "currentColor" }),
521
+ /* @__PURE__ */ l("path", { d: "M10.0001 16.1253V8.78448L7.90832 10.8148C7.46247 11.2474 6.75021 11.2371 6.3175 10.7913C5.88487 10.3455 5.8961 9.6332 6.34192 9.2005L10.3419 5.31769L10.4259 5.24347C10.8633 4.89588 11.4991 4.92079 11.9083 5.31769L15.9083 9.2005C16.3541 9.6332 16.3654 10.3455 15.9327 10.7913C15.5 11.2371 14.7878 11.2474 14.3419 10.8148L12.2501 8.78448V16.1253C12.2501 16.7466 11.7464 17.2503 11.1251 17.2503C10.5038 17.2503 10.0001 16.7466 10.0001 16.1253Z", fill: "currentColor" })
522
+ ] }) })
523
+ );
524
+ S.displayName = "CircleDashedArrowUp";
525
+ const U = /* @__PURE__ */ r.forwardRef(
526
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(1, 1)", children: [
527
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.7102 2.16394C11.5806 1.94535 10.4197 1.94535 9.29016 2.16394C8.74793 2.26888 8.22331 1.91438 8.11837 1.37216C8.01344 0.829935 8.36793 0.305309 8.91016 0.200375C10.2907 -0.0667917 11.7096 -0.0667917 13.0902 0.200375C13.6324 0.305309 13.9869 0.829935 13.8819 1.37216C13.777 1.91438 13.2524 2.26888 12.7102 2.16394Z", fill: "currentColor" }),
528
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.11837 20.6282C8.22331 20.0859 8.74793 19.7314 9.29016 19.8364C10.4197 20.055 11.5806 20.055 12.7102 19.8364C13.2524 19.7314 13.777 20.0859 13.8819 20.6282C13.9869 21.1704 13.6324 21.695 13.0902 21.7999C11.7096 22.0671 10.2907 22.0671 8.91016 21.7999C8.36793 21.695 8.01344 21.1704 8.11837 20.6282Z", fill: "currentColor" }),
529
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15.7813 2.16026C16.0911 1.70304 16.7129 1.58354 17.1701 1.89333C18.3377 2.68448 19.3423 3.69279 20.1291 4.86333C20.4372 5.32169 20.3154 5.94303 19.857 6.25113C19.3987 6.55923 18.7773 6.43741 18.4692 5.97905C17.8255 5.02134 17.0035 4.19635 16.0482 3.54905C15.591 3.23926 15.4715 2.61747 15.7813 2.16026Z", fill: "currentColor" }),
530
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1.37216 8.1184C1.91438 8.22334 2.26888 8.74796 2.16394 9.29019C1.94535 10.4197 1.94535 11.5807 2.16394 12.7102C2.26888 13.2524 1.91438 13.777 1.37216 13.882C0.829935 13.9869 0.305309 13.6324 0.200375 13.0902C-0.0667917 11.7097 -0.0667917 10.2907 0.200375 8.91019C0.305309 8.36796 0.829935 8.01347 1.37216 8.1184Z", fill: "currentColor" }),
531
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19.8401 15.7813C20.2973 16.0911 20.4168 16.7129 20.107 17.1701C19.3159 18.3377 18.3076 19.3423 17.137 20.1291C16.6787 20.4372 16.0573 20.3154 15.7492 19.857C15.4411 19.3987 15.5629 18.7773 16.0213 18.4692C16.979 17.8255 17.804 17.0035 18.4513 16.0482C18.7611 15.591 19.3829 15.4715 19.8401 15.7813Z", fill: "currentColor" }),
532
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M20.6282 8.1184C21.1704 8.01347 21.695 8.36796 21.7999 8.91019C22.0671 10.2907 22.0671 11.7097 21.7999 13.0902C21.695 13.6324 21.1704 13.9869 20.6282 13.882C20.0859 13.777 19.7314 13.2524 19.8364 12.7102C20.055 11.5807 20.055 10.4197 19.8364 9.29019C19.7314 8.74796 20.0859 8.22334 20.6282 8.1184Z", fill: "currentColor" }),
533
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.25109 2.14334C6.55919 2.6017 6.43738 3.22303 5.97902 3.53113C5.0213 4.17488 4.19632 4.99681 3.54902 5.95213C3.23922 6.40935 2.61744 6.52885 2.16022 6.21906C1.70301 5.90926 1.5835 5.28747 1.8933 4.83026C2.68445 3.66264 3.69276 2.65807 4.8633 1.87126C5.32166 1.56316 5.943 1.68498 6.25109 2.14334Z", fill: "currentColor" }),
534
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.1433 15.7492C2.60166 15.4411 3.223 15.5629 3.53109 16.0213C4.17484 16.979 4.99677 17.804 5.95209 18.4513C6.40931 18.7611 6.52881 19.3829 6.21902 19.8401C5.90922 20.2973 5.28744 20.4168 4.83022 20.107C3.66261 19.3159 2.65803 18.3076 1.87122 17.137C1.56312 16.6787 1.68494 16.0573 2.1433 15.7492Z", fill: "currentColor" }),
535
+ /* @__PURE__ */ l("path", { d: "M12.2501 6.12516L12.2501 13.466L14.3419 11.4357C14.7878 11.003 15.5 11.0133 15.9327 11.4591C16.3654 11.905 16.3541 12.6173 15.9083 13.05L11.9083 16.9328L11.8243 17.007C11.387 17.3546 10.7512 17.3297 10.3419 16.9328L6.34192 13.05C5.8961 12.6173 5.88487 11.905 6.3175 11.4591C6.75021 11.0133 7.46247 11.003 7.90832 11.4357L10.0001 13.466V6.12516C10.0001 5.50384 10.5038 5.00016 11.1251 5.00016C11.7464 5.00016 12.2501 5.50384 12.2501 6.12516Z", fill: "currentColor" })
536
+ ] }) })
537
+ );
538
+ U.displayName = "CircleDashedArrowDown";
539
+ const q = /* @__PURE__ */ r.forwardRef(
540
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(2.47, 1)", children: [
541
+ /* @__PURE__ */ l(
814
542
  "path",
815
543
  {
816
544
  d: "M19.0527 5.5V16.5L9.52637 22L0 16.5V5.5L9.52637 0L19.0527 5.5ZM2 6.6543V15.3447L9.52637 19.6895L17.0527 15.3447V6.6543L9.52637 2.30957L2 6.6543Z",
817
545
  fill: "currentColor"
818
546
  }
819
547
  ),
820
- /* @__PURE__ */ C(
548
+ /* @__PURE__ */ l(
821
549
  "path",
822
550
  {
823
551
  fillRule: "evenodd",
@@ -826,16 +554,19 @@ const d = {
826
554
  fill: "currentColor"
827
555
  }
828
556
  )
829
- ] }),
830
- "hexagon-asterisk": /* @__PURE__ */ l("g", { transform: "translate(2.47, 1)", children: [
831
- /* @__PURE__ */ C(
557
+ ] }) })
558
+ );
559
+ q.displayName = "HexagonMinus";
560
+ const A = /* @__PURE__ */ r.forwardRef(
561
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ d("g", { transform: "translate(2.47, 1)", children: [
562
+ /* @__PURE__ */ l(
832
563
  "path",
833
564
  {
834
565
  d: "M19.0527 5.5V16.5L9.52637 22L0 16.5V5.5L9.52637 0L19.0527 5.5ZM2 6.6543V15.3447L9.52637 19.6895L17.0527 15.3447V6.6543L9.52637 2.30957L2 6.6543Z",
835
566
  fill: "currentColor"
836
567
  }
837
568
  ),
838
- /* @__PURE__ */ C(
569
+ /* @__PURE__ */ l(
839
570
  "path",
840
571
  {
841
572
  fillRule: "evenodd",
@@ -844,7 +575,7 @@ const d = {
844
575
  fill: "currentColor"
845
576
  }
846
577
  ),
847
- /* @__PURE__ */ C(
578
+ /* @__PURE__ */ l(
848
579
  "path",
849
580
  {
850
581
  fillRule: "evenodd",
@@ -853,7 +584,7 @@ const d = {
853
584
  fill: "currentColor"
854
585
  }
855
586
  ),
856
- /* @__PURE__ */ C(
587
+ /* @__PURE__ */ l(
857
588
  "path",
858
589
  {
859
590
  fillRule: "evenodd",
@@ -862,15 +593,50 @@ const d = {
862
593
  fill: "currentColor"
863
594
  }
864
595
  )
865
- ] }),
866
- "hexagon-dashed": /* @__PURE__ */ C("g", { children: /* @__PURE__ */ C(
596
+ ] }) })
597
+ );
598
+ A.displayName = "HexagonAsterisk";
599
+ const P = /* @__PURE__ */ r.forwardRef(
600
+ (e, C) => /* @__PURE__ */ l("svg", { ref: C, viewBox: "0 0 24 24", fill: "none", ...e, children: /* @__PURE__ */ l("g", { children: /* @__PURE__ */ l(
867
601
  "path",
868
602
  {
869
603
  d: "M15.5723 20.9375L12 23L8.42676 20.9375L9.42773 19.2051L12 20.6895L14.5723 19.2051L15.5723 20.9375ZM4.47363 13.375V16.3447L7.0459 17.8301L6.0459 19.5615L2.47363 17.5V13.375H4.47363ZM21.5264 13.375V17.5L17.9531 19.5615L16.9541 17.8301L19.5264 16.3447V13.375H21.5264ZM6.0459 4.4375L7.0459 6.16992L4.47363 7.6543V10.625H2.47363V6.5L6.0459 4.4375ZM17.9531 4.4375L21.5264 6.5V10.625H19.5264V7.6543L16.9541 6.16992L17.9531 4.4375ZM15.5723 3.06152V3.0625L14.5723 4.79492L12 3.30957L9.42773 4.79492L8.42773 3.0625L8.42676 3.06152L12 1L15.5723 3.06152Z",
870
604
  fill: "currentColor"
871
605
  }
872
- ) })
873
- };
606
+ ) }) })
607
+ );
608
+ P.displayName = "HexagonDashed";
874
609
  export {
875
- d as customIcons
610
+ V as Approved,
611
+ p as BrokenScale,
612
+ u as BubbleSize,
613
+ o as ChartMarkerBar,
614
+ i as ChartMarkerDashline,
615
+ a as ChartMarkerDashline2,
616
+ c as ChartMarkerDot,
617
+ t as ChartMarkerDotline,
618
+ n as ChartMarkerLine,
619
+ k as CircleCheck2,
620
+ U as CircleDashedArrowDown,
621
+ S as CircleDashedArrowUp,
622
+ D as CircleDiamond,
623
+ N as CircleDot2,
624
+ f as Dot,
625
+ A as HexagonAsterisk,
626
+ P as HexagonDashed,
627
+ q as HexagonMinus,
628
+ g as InfoFilled,
629
+ H as PendingApproval,
630
+ h as ShipLoad,
631
+ v as ShipUnload,
632
+ m as SquareCornerCheck,
633
+ B as SquareCornerPlus,
634
+ y as SquareDashedChartGantt,
635
+ x as SquareDashedCornerPlus,
636
+ w as SquareDiamond,
637
+ R as StarFull,
638
+ Z as UserBroker,
639
+ M as UserCharterer,
640
+ L as UserCreatedBy,
641
+ s as UserOwner
876
642
  };