@spear-ai/spectral 1.3.45 → 1.3.47

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 (77) hide show
  1. package/dist/.js +150 -146
  2. package/dist/Accordion/AccordionBase.js +141 -150
  3. package/dist/ButtonIcon.d.ts +14 -0
  4. package/dist/ButtonIcon.js +119 -0
  5. package/dist/Checkbox/CheckboxBase.js +6 -5
  6. package/dist/Icons/AnnotationsIcon.js +6 -5
  7. package/dist/Icons/CalendarIcon.js +4 -3
  8. package/dist/Icons/CheckCircleIcon.js +6 -5
  9. package/dist/Icons/CheckSquareIcon.js +6 -5
  10. package/dist/Icons/ChevronDownIcon.js +6 -5
  11. package/dist/Icons/ChevronUpIcon.js +9 -8
  12. package/dist/Icons/ClockIcon.js +11 -10
  13. package/dist/Icons/CloseCircleIcon.js +12 -11
  14. package/dist/Icons/CloseIcon.js +10 -9
  15. package/dist/Icons/DashboardIcon.js +6 -5
  16. package/dist/Icons/DeleteIcon.js +10 -9
  17. package/dist/Icons/DurationIcon.js +3 -2
  18. package/dist/Icons/EraserIcon.js +12 -11
  19. package/dist/Icons/ErrorIcon.js +3 -2
  20. package/dist/Icons/EyeClosedIcon.js +9 -8
  21. package/dist/Icons/EyeClosedIcon2.js +6 -5
  22. package/dist/Icons/EyeOpenIcon.js +11 -10
  23. package/dist/Icons/GoToFirstIcon.js +5 -4
  24. package/dist/Icons/GoToLastIcon.js +6 -5
  25. package/dist/Icons/HarmonicCursorsIcon.js +10 -9
  26. package/dist/Icons/InfoIcon.js +9 -8
  27. package/dist/Icons/LabelIcon.js +6 -5
  28. package/dist/Icons/LassoIcon.js +8 -7
  29. package/dist/Icons/LineToolIcon.js +9 -8
  30. package/dist/Icons/LiveViewIcon.js +7 -6
  31. package/dist/Icons/LoaderIcon.js +6 -5
  32. package/dist/Icons/LocationIcon.js +12 -11
  33. package/dist/Icons/LogoutIcon.js +4 -3
  34. package/dist/Icons/MetadataIcon.js +6 -5
  35. package/dist/Icons/OntologyIcon.js +3 -2
  36. package/dist/Icons/PanelIcon.js +4 -3
  37. package/dist/Icons/PlayIcon.js +8 -7
  38. package/dist/Icons/PlusIcon.js +8 -7
  39. package/dist/Icons/ResetIcon.js +14 -13
  40. package/dist/Icons/ScissorsIcon.js +7 -6
  41. package/dist/Icons/SettingsIcon.js +3 -2
  42. package/dist/Icons/TrashIcon.js +9 -8
  43. package/dist/Icons/UndoIcon.js +6 -5
  44. package/dist/Icons/UserIcon.js +7 -6
  45. package/dist/Icons/WarningIcon.js +13 -12
  46. package/dist/Icons/ZoomAllIcon.js +7 -6
  47. package/dist/Icons/ZoomXIcon.js +9 -8
  48. package/dist/Icons/ZoomYIcon.js +9 -8
  49. package/dist/RadioGroup/RadioGroupBase.js +130 -138
  50. package/dist/Switch/SwitchBase.js +22 -21
  51. package/dist/Toggle/ToggleBase.js +4 -4
  52. package/dist/ToggleGroup/ToggleGroupBase.js +6 -5
  53. package/dist/components/Accordion/AccordionBase.d.ts.map +1 -1
  54. package/dist/components/ButtonIcon/ButtonIcon.d.ts +14 -0
  55. package/dist/components/ButtonIcon/ButtonIcon.d.ts.map +1 -0
  56. package/dist/components/Checkbox/CheckboxBase.d.ts.map +1 -1
  57. package/dist/components/RadioGroup/RadioGroupBase.d.ts.map +1 -1
  58. package/dist/components/Switch/SwitchBase.d.ts.map +1 -1
  59. package/dist/components/Toggle/ToggleBase.d.ts.map +1 -1
  60. package/dist/components/ToggleGroup/ToggleGroupBase.d.ts.map +1 -1
  61. package/dist/hooks/useControllableState.d.ts +9 -0
  62. package/dist/hooks/useControllableState.d.ts.map +1 -0
  63. package/dist/hooks/useControllableState.js +15 -0
  64. package/dist/index.d.ts +2 -0
  65. package/dist/index.d.ts.map +1 -1
  66. package/dist/styles/main.css +1 -1
  67. package/dist/utils/formFieldUtils.js +1 -1
  68. package/dist/utils/sharedUtils.d.ts +2 -0
  69. package/dist/utils/sharedUtils.d.ts.map +1 -0
  70. package/dist/utils/sharedUtils.js +6 -0
  71. package/package.json +1 -1
  72. package/dist/hooks/useOutsideClick.d.ts +0 -8
  73. package/dist/hooks/useOutsideClick.d.ts.map +0 -1
  74. package/dist/hooks/useOutsideClick.js +0 -16
  75. package/dist/utils/shared.d.ts +0 -24
  76. package/dist/utils/shared.d.ts.map +0 -1
  77. package/dist/utils/shared.js +0 -29
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
3
  import { jsxs as h, jsx as o } from "react/jsx-runtime";
4
- import c from "./IconBase.js";
5
- import { forwardRef as a } from "react";
4
+ import a from "./IconBase.js";
5
+ import { forwardRef as c } from "react";
6
6
  const p = ({ className: r, ariaHidden: n, title: e = "Chevron", description: t, size: i = 24, ...s }, d) => /* @__PURE__ */ h(
7
- c,
7
+ a,
8
8
  {
9
9
  size: i,
10
10
  className: r,
@@ -22,7 +22,8 @@ const p = ({ className: r, ariaHidden: n, title: e = "Chevron", description: t,
22
22
  /* @__PURE__ */ o("path", { d: "M6 9l6 6l6 -6" })
23
23
  ]
24
24
  }
25
- ), k = a(p);
25
+ ), l = c(p);
26
+ l.displayName = "ChevronDownIcon";
26
27
  export {
27
- k as ChevronDownIcon
28
+ l as ChevronDownIcon
28
29
  };
@@ -1,17 +1,17 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
- import { jsxs as h, jsx as o } from "react/jsx-runtime";
4
- import p from "./IconBase.js";
5
- import { forwardRef as c } from "react";
6
- const a = ({ className: r, ariaHidden: n, title: e = "Chevron", description: t, size: i = 24, ...s }, d) => /* @__PURE__ */ h(
7
- p,
3
+ import { jsxs as d, jsx as o } from "react/jsx-runtime";
4
+ import h from "./IconBase.js";
5
+ import { forwardRef as a } from "react";
6
+ const c = ({ className: r, ariaHidden: n, title: e = "Chevron", description: t, size: i = 24, ...s }, p) => /* @__PURE__ */ d(
7
+ h,
8
8
  {
9
9
  size: i,
10
10
  className: r,
11
11
  title: e,
12
12
  description: t,
13
13
  "aria-hidden": n,
14
- ref: d,
14
+ ref: p,
15
15
  ...s,
16
16
  stroke: "currentColor",
17
17
  strokeWidth: "2",
@@ -22,7 +22,8 @@ const a = ({ className: r, ariaHidden: n, title: e = "Chevron", description: t,
22
22
  /* @__PURE__ */ o("path", { d: "M6 15l6 -6l6 6" })
23
23
  ]
24
24
  }
25
- ), k = c(a);
25
+ ), l = a(c);
26
+ l.displayName = "ChevronUpIcon";
26
27
  export {
27
- k as ChevronUpIcon
28
+ l as ChevronUpIcon
28
29
  };
@@ -2,17 +2,17 @@
2
2
  import "../styles/main.css";
3
3
  import { jsxs as d, jsx as o } from "react/jsx-runtime";
4
4
  import k from "./IconBase.js";
5
- import { forwardRef as C } from "react";
6
- const a = ({ className: r, ariaHidden: t, title: e = "Clock", description: n, size: i = 24, ...s }, c) => /* @__PURE__ */ d(
5
+ import { forwardRef as a } from "react";
6
+ const C = ({ className: r, ariaHidden: e, title: n = "Clock", description: t, size: c = 24, ...i }, s) => /* @__PURE__ */ d(
7
7
  k,
8
8
  {
9
- size: i,
9
+ size: c,
10
10
  className: r,
11
- title: e,
12
- description: n,
13
- "aria-hidden": t,
14
- ref: c,
15
- ...s,
11
+ title: n,
12
+ description: t,
13
+ "aria-hidden": e,
14
+ ref: s,
15
+ ...i,
16
16
  children: [
17
17
  /* @__PURE__ */ o(
18
18
  "path",
@@ -36,7 +36,8 @@ const a = ({ className: r, ariaHidden: t, title: e = "Clock", description: n, si
36
36
  )
37
37
  ]
38
38
  }
39
- ), l = C(a);
39
+ ), p = a(C);
40
+ p.displayName = "ClockIcon";
40
41
  export {
41
- l as ClockIcon
42
+ p as ClockIcon
42
43
  };
@@ -1,29 +1,30 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
- import { jsxs as d, jsx as r } from "react/jsx-runtime";
4
- import l from "./IconBase.js";
5
- import { forwardRef as m } from "react";
6
- const a = ({ className: o, ariaHidden: e, title: c = "Close Circle", description: t, size: i = 24, ...n }, s) => /* @__PURE__ */ d(
7
- l,
3
+ import { jsxs as l, jsx as r } from "react/jsx-runtime";
4
+ import d from "./IconBase.js";
5
+ import { forwardRef as a } from "react";
6
+ const m = ({ className: o, ariaHidden: e, title: c = "Close Circle", description: i, size: n = 24, ...s }, t) => /* @__PURE__ */ l(
7
+ d,
8
8
  {
9
- size: i,
9
+ size: n,
10
10
  className: o,
11
11
  title: c,
12
- description: t,
12
+ description: i,
13
13
  "aria-hidden": e,
14
- ref: s,
14
+ ref: t,
15
15
  stroke: "currentColor",
16
16
  strokeWidth: "2",
17
17
  strokeLinecap: "round",
18
18
  strokeLinejoin: "round",
19
- ...n,
19
+ ...s,
20
20
  children: [
21
21
  /* @__PURE__ */ r("circle", { cx: "12", cy: "12", r: "10" }),
22
22
  /* @__PURE__ */ r("path", { d: "m15 9-6 6" }),
23
23
  /* @__PURE__ */ r("path", { d: "m9 9 6 6" })
24
24
  ]
25
25
  }
26
- ), h = m(a);
26
+ ), C = a(m);
27
+ C.displayName = "CloseCircleIcon";
27
28
  export {
28
- h as CloseCircleIcon
29
+ C as CloseCircleIcon
29
30
  };
@@ -1,15 +1,15 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
- import { jsxs as c, jsx as o } from "react/jsx-runtime";
4
- import a from "./IconBase.js";
3
+ import { jsxs as a, jsx as o } from "react/jsx-runtime";
4
+ import c from "./IconBase.js";
5
5
  import { forwardRef as m } from "react";
6
- const p = ({ className: r, ariaHidden: e, title: t = "Close", description: n, size: s = 24, ...i }, d) => /* @__PURE__ */ c(
7
- a,
6
+ const p = ({ className: r, ariaHidden: e, title: n = "Close", description: s, size: t = 24, ...i }, d) => /* @__PURE__ */ a(
7
+ c,
8
8
  {
9
- size: s,
9
+ size: t,
10
10
  className: r,
11
- title: t,
12
- description: n,
11
+ title: n,
12
+ description: s,
13
13
  "aria-hidden": e,
14
14
  ref: d,
15
15
  stroke: "currentColor",
@@ -22,7 +22,8 @@ const p = ({ className: r, ariaHidden: e, title: t = "Close", description: n, si
22
22
  /* @__PURE__ */ o("path", { d: "m6 6 12 12" })
23
23
  ]
24
24
  }
25
- ), k = m(p);
25
+ ), l = m(p);
26
+ l.displayName = "CloseIcon";
26
27
  export {
27
- k as CloseIcon
28
+ l as CloseIcon
28
29
  };
@@ -3,14 +3,14 @@ import "../styles/main.css";
3
3
  import { jsxs as a, jsx as o } from "react/jsx-runtime";
4
4
  import k from "./IconBase.js";
5
5
  import { forwardRef as C } from "react";
6
- const c = ({ className: r, ariaHidden: t, title: e = "Dashboard", description: n, size: s = 24, ...d }, i) => /* @__PURE__ */ a(
6
+ const c = ({ className: r, ariaHidden: e, title: t = "Dashboard", description: n, size: s = 24, ...d }, i) => /* @__PURE__ */ a(
7
7
  k,
8
8
  {
9
9
  size: s,
10
10
  className: r,
11
- title: e,
11
+ title: t,
12
12
  description: n,
13
- "aria-hidden": t,
13
+ "aria-hidden": e,
14
14
  ref: i,
15
15
  ...d,
16
16
  children: [
@@ -56,7 +56,8 @@ const c = ({ className: r, ariaHidden: t, title: e = "Dashboard", description: n
56
56
  )
57
57
  ]
58
58
  }
59
- ), H = C(c);
59
+ ), h = C(c);
60
+ h.displayName = "DashboardIcon";
60
61
  export {
61
- H as DashboardIcon
62
+ h as DashboardIcon
62
63
  };
@@ -1,16 +1,16 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
- import { jsxs as C, jsx as o } from "react/jsx-runtime";
4
- import c from "./IconBase.js";
5
- import { forwardRef as k } from "react";
6
- const a = ({ className: r, ariaHidden: e, title: t = "Delete", description: n, size: i = 24, ...s }, d) => /* @__PURE__ */ C(
7
- c,
3
+ import { jsxs as c, jsx as o } from "react/jsx-runtime";
4
+ import C from "./IconBase.js";
5
+ import { forwardRef as a } from "react";
6
+ const k = ({ className: e, ariaHidden: r, title: t = "Delete", description: n, size: i = 24, ...s }, d) => /* @__PURE__ */ c(
7
+ C,
8
8
  {
9
9
  size: i,
10
- className: r,
10
+ className: e,
11
11
  title: t,
12
12
  description: n,
13
- "aria-hidden": e,
13
+ "aria-hidden": r,
14
14
  ref: d,
15
15
  ...s,
16
16
  children: [
@@ -28,7 +28,8 @@ const a = ({ className: r, ariaHidden: e, title: t = "Delete", description: n, s
28
28
  /* @__PURE__ */ o("path", { d: "M18 9L12 15", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })
29
29
  ]
30
30
  }
31
- ), h = k(a);
31
+ ), p = a(k);
32
+ p.displayName = "DeleteIcon";
32
33
  export {
33
- h as DeleteIcon
34
+ p as DeleteIcon
34
35
  };
@@ -76,7 +76,8 @@ const c = ({ className: r, ariaHidden: t, title: e = "Duration", description: n,
76
76
  )
77
77
  ]
78
78
  }
79
- ), L = a(c);
79
+ ), p = a(c);
80
+ p.displayName = "DurationIcon";
80
81
  export {
81
- L as DurationIcon
82
+ p as DurationIcon
82
83
  };
@@ -1,22 +1,22 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
- import { jsxs as e, jsx as r } from "react/jsx-runtime";
4
- import a, { SvgIdContext as l } from "./IconBase.js";
3
+ import { jsxs as o, jsx as r } from "react/jsx-runtime";
4
+ import h, { SvgIdContext as l } from "./IconBase.js";
5
5
  import { forwardRef as p, useContext as C } from "react";
6
- const u = ({ className: t, ariaHidden: i, title: n = "Eraser", description: s, size: d = 24, ...c }, h) => {
7
- const o = C(l);
8
- return /* @__PURE__ */ e(
9
- a,
6
+ const u = ({ className: t, ariaHidden: i, title: n = "Eraser", description: s, size: d = 24, ...c }, a) => {
7
+ const e = C(l);
8
+ return /* @__PURE__ */ o(
9
+ h,
10
10
  {
11
11
  size: d,
12
12
  className: t,
13
13
  title: n,
14
14
  description: s,
15
15
  "aria-hidden": i,
16
- ref: h,
16
+ ref: a,
17
17
  ...c,
18
18
  children: [
19
- /* @__PURE__ */ e("g", { clipPath: `url(#${o}-clip0)`, children: [
19
+ /* @__PURE__ */ o("g", { clipPath: `url(#${e}-clip0)`, children: [
20
20
  /* @__PURE__ */ r(
21
21
  "path",
22
22
  {
@@ -29,11 +29,12 @@ const u = ({ className: t, ariaHidden: i, title: n = "Eraser", description: s, s
29
29
  ),
30
30
  /* @__PURE__ */ r("path", { d: "M18 13.3L11.7 7", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })
31
31
  ] }),
32
- /* @__PURE__ */ r("defs", { children: /* @__PURE__ */ r("clipPath", { id: `${o}-clip0`, children: /* @__PURE__ */ r("rect", { width: "24", height: "24", fill: "white" }) }) })
32
+ /* @__PURE__ */ r("defs", { children: /* @__PURE__ */ r("clipPath", { id: `${e}-clip0`, children: /* @__PURE__ */ r("rect", { width: "24", height: "24", fill: "white" }) }) })
33
33
  ]
34
34
  }
35
35
  );
36
- }, m = p(u);
36
+ }, L = p(u);
37
+ L.displayName = "EraserIcon";
37
38
  export {
38
- m as EraserIcon
39
+ L as EraserIcon
39
40
  };
@@ -24,7 +24,8 @@ const h = ({ className: o, ariaHidden: n, title: t = "Error", description: e, si
24
24
  /* @__PURE__ */ r("path", { d: "M12 16v.01" })
25
25
  ]
26
26
  }
27
- ), l = c(h);
27
+ ), m = c(h);
28
+ m.displayName = "ErrorIcon";
28
29
  export {
29
- l as ErrorIcon
30
+ m as ErrorIcon
30
31
  };
@@ -1,16 +1,16 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
- import { jsxs as i, jsx as o } from "react/jsx-runtime";
4
- import l from "./IconBase.js";
3
+ import { jsxs as l, jsx as o } from "react/jsx-runtime";
4
+ import i from "./IconBase.js";
5
5
  import { forwardRef as p } from "react";
6
- const c = ({ className: r, ariaHidden: e, title: t = "Eye Closed", description: n, size: d = 24, ...s }, a) => /* @__PURE__ */ i(
7
- l,
6
+ const c = ({ className: e, ariaHidden: r, title: t = "Eye Closed", description: n, size: d = 24, ...s }, a) => /* @__PURE__ */ l(
7
+ i,
8
8
  {
9
9
  size: d,
10
- className: r,
10
+ className: e,
11
11
  title: t,
12
12
  description: n,
13
- "aria-hidden": e,
13
+ "aria-hidden": r,
14
14
  ref: a,
15
15
  stroke: "currentColor",
16
16
  strokeWidth: "2",
@@ -26,7 +26,8 @@ const c = ({ className: r, ariaHidden: e, title: t = "Eye Closed", description:
26
26
  /* @__PURE__ */ o("path", { d: "M15 17l-.5 -4" })
27
27
  ]
28
28
  }
29
- ), M = p(c);
29
+ ), h = p(c);
30
+ h.displayName = "EyeClosedIcon";
30
31
  export {
31
- M as EyeClosedIcon
32
+ h as EyeClosedIcon
32
33
  };
@@ -3,14 +3,14 @@ import "../styles/main.css";
3
3
  import { jsxs as i, jsx as o } from "react/jsx-runtime";
4
4
  import p from "./IconBase.js";
5
5
  import { forwardRef as c } from "react";
6
- const h = ({ className: r, ariaHidden: e, title: t = "Eye Closed", description: d, size: n = 24, ...s }, a) => /* @__PURE__ */ i(
6
+ const m = ({ className: e, ariaHidden: r, title: t = "Eye Closed", description: d, size: n = 24, ...s }, a) => /* @__PURE__ */ i(
7
7
  p,
8
8
  {
9
9
  size: n,
10
- className: r,
10
+ className: e,
11
11
  title: t,
12
12
  description: d,
13
- "aria-hidden": e,
13
+ "aria-hidden": r,
14
14
  ref: a,
15
15
  stroke: "currentColor",
16
16
  strokeWidth: "2",
@@ -24,7 +24,8 @@ const h = ({ className: r, ariaHidden: e, title: t = "Eye Closed", description:
24
24
  /* @__PURE__ */ o("path", { d: "m2 2 20 20" })
25
25
  ]
26
26
  }
27
- ), k = c(h);
27
+ ), h = c(m);
28
+ h.displayName = "EyeClosedIcon2";
28
29
  export {
29
- k as EyeClosedIcon2
30
+ h as EyeClosedIcon2
30
31
  };
@@ -1,17 +1,17 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
- import { jsxs as p, jsx as r } from "react/jsx-runtime";
4
- import d from "./IconBase.js";
5
- import { forwardRef as a } from "react";
6
- const m = ({ className: o, ariaHidden: e, title: n = "Eye Open", description: t, size: c = 24, ...i }, s) => /* @__PURE__ */ p(
7
- d,
3
+ import { jsxs as s, jsx as r } from "react/jsx-runtime";
4
+ import a from "./IconBase.js";
5
+ import { forwardRef as d } from "react";
6
+ const m = ({ className: e, ariaHidden: o, title: n = "Eye Open", description: t, size: c = 24, ...i }, p) => /* @__PURE__ */ s(
7
+ a,
8
8
  {
9
9
  size: c,
10
- className: o,
10
+ className: e,
11
11
  title: n,
12
12
  description: t,
13
- "aria-hidden": e,
14
- ref: s,
13
+ "aria-hidden": o,
14
+ ref: p,
15
15
  stroke: "currentColor",
16
16
  strokeWidth: "2",
17
17
  strokeLinecap: "round",
@@ -22,7 +22,8 @@ const m = ({ className: o, ariaHidden: e, title: n = "Eye Open", description: t,
22
22
  /* @__PURE__ */ r("circle", { cx: "12", cy: "12", r: "3" })
23
23
  ]
24
24
  }
25
- ), u = a(m);
25
+ ), y = d(m);
26
+ y.displayName = "EyeOpenIcon";
26
27
  export {
27
- u as EyeOpenIcon
28
+ y as EyeOpenIcon
28
29
  };
@@ -2,8 +2,8 @@
2
2
  import "../styles/main.css";
3
3
  import { jsxs as c, jsx as o } from "react/jsx-runtime";
4
4
  import a from "./IconBase.js";
5
- import { forwardRef as k } from "react";
6
- const p = ({ className: r, ariaHidden: t, title: e = "Go to First", description: n, size: i = 24, ...s }, d) => /* @__PURE__ */ c(
5
+ import { forwardRef as p } from "react";
6
+ const k = ({ className: r, ariaHidden: t, title: e = "Go to First", description: n, size: i = 24, ...s }, d) => /* @__PURE__ */ c(
7
7
  a,
8
8
  {
9
9
  size: i,
@@ -36,7 +36,8 @@ const p = ({ className: r, ariaHidden: t, title: e = "Go to First", description:
36
36
  )
37
37
  ]
38
38
  }
39
- ), L = k(p);
39
+ ), m = p(k);
40
+ m.displayName = "GoToFirstIcon";
40
41
  export {
41
- L as GoToFirstIcon
42
+ m as GoToFirstIcon
42
43
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
- import { jsxs as a, jsx as o } from "react/jsx-runtime";
3
+ import { jsxs as d, jsx as o } from "react/jsx-runtime";
4
4
  import c from "./IconBase.js";
5
5
  import { forwardRef as L } from "react";
6
- const k = ({ className: r, ariaHidden: t, title: e = "Go to Last", description: n, size: s = 24, ...i }, d) => /* @__PURE__ */ a(
6
+ const p = ({ className: r, ariaHidden: t, title: e = "Go to Last", description: n, size: s = 24, ...i }, a) => /* @__PURE__ */ d(
7
7
  c,
8
8
  {
9
9
  size: s,
@@ -11,7 +11,7 @@ const k = ({ className: r, ariaHidden: t, title: e = "Go to Last", description:
11
11
  title: e,
12
12
  description: n,
13
13
  "aria-hidden": t,
14
- ref: d,
14
+ ref: a,
15
15
  ...i,
16
16
  children: [
17
17
  /* @__PURE__ */ o(
@@ -36,7 +36,8 @@ const k = ({ className: r, ariaHidden: t, title: e = "Go to Last", description:
36
36
  )
37
37
  ]
38
38
  }
39
- ), m = L(k);
39
+ ), k = L(p);
40
+ k.displayName = "GoToLastIcon";
40
41
  export {
41
- m as GoToLastIcon
42
+ k as GoToLastIcon
42
43
  };
@@ -1,16 +1,16 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
3
  import { jsxs as a, jsx as r } from "react/jsx-runtime";
4
- import d from "./IconBase.js";
5
- import { forwardRef as m } from "react";
6
- const C = ({ className: o, ariaHidden: t, title: s = "Harmonic Cursors", description: n, size: e = 24, ...i }, c) => /* @__PURE__ */ a(
7
- d,
4
+ import m from "./IconBase.js";
5
+ import { forwardRef as d } from "react";
6
+ const C = ({ className: o, ariaHidden: s, title: n = "Harmonic Cursors", description: t, size: e = 24, ...i }, c) => /* @__PURE__ */ a(
7
+ m,
8
8
  {
9
9
  size: e,
10
10
  className: o,
11
- title: s,
12
- description: n,
13
- "aria-hidden": t,
11
+ title: n,
12
+ description: t,
13
+ "aria-hidden": s,
14
14
  ref: c,
15
15
  ...i,
16
16
  children: [
@@ -33,7 +33,8 @@ const C = ({ className: o, ariaHidden: t, title: s = "Harmonic Cursors", descrip
33
33
  )
34
34
  ]
35
35
  }
36
- ), f = m(C);
36
+ ), u = d(C);
37
+ u.displayName = "HarmonicCursorsIcon";
37
38
  export {
38
- f as HarmonicCursorsIcon
39
+ u as HarmonicCursorsIcon
39
40
  };
@@ -1,15 +1,15 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
3
  import { jsxs as c, jsx as o } from "react/jsx-runtime";
4
- import k from "./IconBase.js";
5
- import { forwardRef as a } from "react";
6
- const p = ({ className: r, ariaHidden: n, title: t = "Info", description: e, size: i = 24, ...s }, d) => /* @__PURE__ */ c(
7
- k,
4
+ import a from "./IconBase.js";
5
+ import { forwardRef as k } from "react";
6
+ const p = ({ className: r, ariaHidden: n, title: e = "Info", description: t, size: i = 24, ...s }, d) => /* @__PURE__ */ c(
7
+ a,
8
8
  {
9
9
  size: i,
10
10
  className: r,
11
- title: t,
12
- description: e,
11
+ title: e,
12
+ description: t,
13
13
  "aria-hidden": n,
14
14
  ref: d,
15
15
  ...s,
@@ -28,7 +28,8 @@ const p = ({ className: r, ariaHidden: n, title: t = "Info", description: e, siz
28
28
  /* @__PURE__ */ o("path", { d: "M12 7H12.01", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })
29
29
  ]
30
30
  }
31
- ), C = a(p);
31
+ ), u = k(p);
32
+ u.displayName = "InfoIcon";
32
33
  export {
33
- C as InfoIcon
34
+ u as InfoIcon
34
35
  };
@@ -3,13 +3,13 @@ import "../styles/main.css";
3
3
  import { jsx as r } from "react/jsx-runtime";
4
4
  import i from "./IconBase.js";
5
5
  import { forwardRef as s } from "react";
6
- const L = ({ className: o, ariaHidden: e, title: t = "Label", description: a, size: n = 24, ...C }, c) => /* @__PURE__ */ r(
6
+ const L = ({ className: o, ariaHidden: e, title: a = "Label", description: t, size: n = 24, ...C }, c) => /* @__PURE__ */ r(
7
7
  i,
8
8
  {
9
9
  size: n,
10
10
  className: o,
11
- title: t,
12
- description: a,
11
+ title: a,
12
+ description: t,
13
13
  "aria-hidden": e,
14
14
  ref: c,
15
15
  ...C,
@@ -23,7 +23,8 @@ const L = ({ className: o, ariaHidden: e, title: t = "Label", description: a, si
23
23
  }
24
24
  )
25
25
  }
26
- ), f = s(L);
26
+ ), d = s(L);
27
+ d.displayName = "LabelIcon";
27
28
  export {
28
- f as LabelIcon
29
+ d as LabelIcon
29
30
  };
@@ -1,17 +1,17 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
- import { jsxs as d, jsx as o } from "react/jsx-runtime";
3
+ import { jsxs as C, jsx as o } from "react/jsx-runtime";
4
4
  import a from "./IconBase.js";
5
5
  import { forwardRef as c } from "react";
6
- const k = ({ className: r, ariaHidden: t, title: e = "Lasso Tool", description: n, size: s = 24, ...i }, C) => /* @__PURE__ */ d(
6
+ const k = ({ className: r, ariaHidden: e, title: t = "Lasso Tool", description: n, size: s = 24, ...i }, d) => /* @__PURE__ */ C(
7
7
  a,
8
8
  {
9
9
  size: s,
10
10
  className: r,
11
- title: e,
11
+ title: t,
12
12
  description: n,
13
- "aria-hidden": t,
14
- ref: C,
13
+ "aria-hidden": e,
14
+ ref: d,
15
15
  ...i,
16
16
  children: [
17
17
  /* @__PURE__ */ o(
@@ -46,7 +46,8 @@ const k = ({ className: r, ariaHidden: t, title: e = "Lasso Tool", description:
46
46
  )
47
47
  ]
48
48
  }
49
- ), h = c(k);
49
+ ), p = c(k);
50
+ p.displayName = "LassoIcon";
50
51
  export {
51
- h as LassoIcon
52
+ p as LassoIcon
52
53
  };
@@ -2,17 +2,17 @@
2
2
  import "../styles/main.css";
3
3
  import { jsxs as k, jsx as o } from "react/jsx-runtime";
4
4
  import c from "./IconBase.js";
5
- import { forwardRef as u } from "react";
6
- const a = ({ className: r, ariaHidden: t, title: e = "Line Tool", description: n, size: s = 24, ...i }, d) => /* @__PURE__ */ k(
5
+ import { forwardRef as a } from "react";
6
+ const p = ({ className: r, ariaHidden: e, title: t = "Line Tool", description: n, size: i = 24, ...s }, d) => /* @__PURE__ */ k(
7
7
  c,
8
8
  {
9
- size: s,
9
+ size: i,
10
10
  className: r,
11
- title: e,
11
+ title: t,
12
12
  description: n,
13
- "aria-hidden": t,
13
+ "aria-hidden": e,
14
14
  ref: d,
15
- ...i,
15
+ ...s,
16
16
  children: [
17
17
  /* @__PURE__ */ o(
18
18
  "path",
@@ -92,7 +92,8 @@ const a = ({ className: r, ariaHidden: t, title: e = "Line Tool", description: n
92
92
  )
93
93
  ]
94
94
  }
95
- ), L = u(a);
95
+ ), u = a(p);
96
+ u.displayName = "LineToolIcon";
96
97
  export {
97
- L as LineToolIcon
98
+ u as LineToolIcon
98
99
  };