@spear-ai/spectral 1.3.21 → 1.3.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/.js +84 -77
- package/dist/Button.js +1 -1
- package/dist/Card.js +4 -4
- package/dist/Drawer.js +15 -8
- package/dist/Icons/AnnotationsIcon.js +3 -3
- package/dist/Icons/CalendarIcon.js +8 -8
- package/dist/Icons/DeleteIcon.js +10 -10
- package/dist/Icons/DurationIcon.js +9 -9
- package/dist/Icons/EraserIcon.js +7 -7
- package/dist/Icons/GoToFirstIcon.js +10 -10
- package/dist/Icons/GoToLastIcon.js +8 -8
- package/dist/Icons/IconBase.js +8 -7
- package/dist/Icons/InfoIcon.js +32 -0
- package/dist/Icons/LabelIcon.js +6 -6
- package/dist/Icons/LassoIcon.js +3 -3
- package/dist/Icons/LineToolIcon.js +14 -14
- package/dist/Icons/LiveViewIcon.js +30 -30
- package/dist/Icons/LocationIcon.js +6 -6
- package/dist/Icons/MetadataIcon.js +8 -8
- package/dist/Icons/OntologyIcon.js +5 -5
- package/dist/Icons/PlayIcon.js +11 -11
- package/dist/Icons/PlusIcon.js +9 -9
- package/dist/Icons/ResetIcon.js +8 -8
- package/dist/Icons/ScissorsIcon.js +15 -15
- package/dist/Icons/SettingsIcon.js +42 -0
- package/dist/Icons/TrashIcon.js +1 -1
- package/dist/Icons/UndoIcon.js +5 -5
- package/dist/Icons/ZoomAllIcon.js +57 -25
- package/dist/Icons/ZoomXIcon.js +7 -7
- package/dist/Icons.js +38 -34
- package/dist/Popover.js +48 -42
- package/dist/RadioGroup/RadioGroupBase.js +120 -118
- package/dist/RadioGroup.js +41 -0
- package/dist/Slider/SliderBase.js +1 -1
- package/dist/ToggleGroup.js +9 -9
- package/dist/assets/main.css +1 -1
- package/dist/components/Drawer/Drawer.d.ts +2 -0
- package/dist/components/Drawer/Drawer.d.ts.map +1 -1
- package/dist/components/Icons/IconBase.d.ts +5 -5
- package/dist/components/Icons/IconBase.d.ts.map +1 -1
- package/dist/components/Icons/InfoIcon.d.ts +3 -0
- package/dist/components/Icons/InfoIcon.d.ts.map +1 -0
- package/dist/components/Icons/SettingsIcon.d.ts +3 -0
- package/dist/components/Icons/SettingsIcon.d.ts.map +1 -0
- package/dist/components/Icons/ZoomAllIcon.d.ts.map +1 -1
- package/dist/components/Icons/index.d.ts +2 -0
- package/dist/components/Icons/index.d.ts.map +1 -1
- package/dist/components/Popover/Popover.d.ts +1 -1
- package/dist/components/Popover/Popover.d.ts.map +1 -1
- package/dist/components/RadioGroup/RadioGroup.d.ts +11 -0
- package/dist/components/RadioGroup/RadioGroup.d.ts.map +1 -0
- package/dist/components/RadioGroup/RadioGroupBase.d.ts +2 -0
- package/dist/components/RadioGroup/RadioGroupBase.d.ts.map +1 -1
- package/dist/{loader-circle-Btf6jOd5.js → createLucideIcon-CI1yJrZf.js} +9 -16
- package/dist/features/HorizonColorGrid/HorizonColorGrid.d.ts +3 -0
- package/dist/features/HorizonColorGrid/HorizonColorGrid.d.ts.map +1 -0
- package/dist/features/HorizonColorGrid.js +70 -0
- package/dist/features/LabelingTools.js +4 -2
- package/dist/features/SensorMetadata/SensorMetadata.d.ts +2 -0
- package/dist/features/SensorMetadata/SensorMetadata.d.ts.map +1 -0
- package/dist/features/SensorMetadata.js +85 -0
- package/dist/features/SettingsPopover/SettingsPopover.d.ts +2 -0
- package/dist/features/SettingsPopover/SettingsPopover.d.ts.map +1 -0
- package/dist/features/SettingsPopover.js +194 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/loader-circle-CvdzOiQ_.js +11 -0
- package/dist/themes/grayscale-theme.webp +0 -0
- package/dist/themes/green-black-theme.webp +0 -0
- package/dist/themes/reverse-grayscale-theme.webp +0 -0
- package/dist/themes/viridis-theme.webp +0 -0
- package/package.json +5 -2
- package/src/styles/main.css +1 -0
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as
|
|
2
|
+
import { jsxs as d, jsx as o } from "react/jsx-runtime";
|
|
3
3
|
import k from "./IconBase.js";
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const
|
|
4
|
+
import { forwardRef as c } from "react";
|
|
5
|
+
const u = ({ className: r, ariaHidden: t, title: e = "Line Tool", description: n, size: s = 24 }, i) => /* @__PURE__ */ d(
|
|
6
6
|
k,
|
|
7
7
|
{
|
|
8
8
|
size: s,
|
|
9
|
-
className:
|
|
9
|
+
className: r,
|
|
10
10
|
title: e,
|
|
11
11
|
description: n,
|
|
12
12
|
"aria-hidden": t,
|
|
13
|
-
ref:
|
|
13
|
+
ref: i,
|
|
14
14
|
children: [
|
|
15
|
-
/* @__PURE__ */
|
|
15
|
+
/* @__PURE__ */ o(
|
|
16
16
|
"path",
|
|
17
17
|
{
|
|
18
18
|
d: "M4.84 6.85425V17.0514",
|
|
@@ -22,7 +22,7 @@ const c = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
22
22
|
strokeLinejoin: "round"
|
|
23
23
|
}
|
|
24
24
|
),
|
|
25
|
-
/* @__PURE__ */
|
|
25
|
+
/* @__PURE__ */ o(
|
|
26
26
|
"path",
|
|
27
27
|
{
|
|
28
28
|
d: "M19.1287 6.85425V17.0514",
|
|
@@ -32,7 +32,7 @@ const c = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
32
32
|
strokeLinejoin: "round"
|
|
33
33
|
}
|
|
34
34
|
),
|
|
35
|
-
/* @__PURE__ */
|
|
35
|
+
/* @__PURE__ */ o(
|
|
36
36
|
"path",
|
|
37
37
|
{
|
|
38
38
|
d: "M6.88124 4.81494H17.0874",
|
|
@@ -42,7 +42,7 @@ const c = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
42
42
|
strokeLinejoin: "round"
|
|
43
43
|
}
|
|
44
44
|
),
|
|
45
|
-
/* @__PURE__ */
|
|
45
|
+
/* @__PURE__ */ o(
|
|
46
46
|
"path",
|
|
47
47
|
{
|
|
48
48
|
d: "M6.88124 19.0908H17.0874",
|
|
@@ -52,7 +52,7 @@ const c = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
52
52
|
strokeLinejoin: "round"
|
|
53
53
|
}
|
|
54
54
|
),
|
|
55
|
-
/* @__PURE__ */
|
|
55
|
+
/* @__PURE__ */ o(
|
|
56
56
|
"path",
|
|
57
57
|
{
|
|
58
58
|
d: "M19.1287 19.0908C19.1287 19.1011 19.1287 19.1115 19.1339 19.1323C19.139 19.1532 19.1494 19.1842 19.16 19.1848",
|
|
@@ -61,7 +61,7 @@ const c = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
61
61
|
strokeLinecap: "round"
|
|
62
62
|
}
|
|
63
63
|
),
|
|
64
|
-
/* @__PURE__ */
|
|
64
|
+
/* @__PURE__ */ o(
|
|
65
65
|
"path",
|
|
66
66
|
{
|
|
67
67
|
d: "M19.1287 4.81494C19.1287 4.82528 19.1287 4.83563 19.1339 4.85647C19.139 4.87732 19.1494 4.90835 19.16 4.90897",
|
|
@@ -70,7 +70,7 @@ const c = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
70
70
|
strokeLinecap: "round"
|
|
71
71
|
}
|
|
72
72
|
),
|
|
73
|
-
/* @__PURE__ */
|
|
73
|
+
/* @__PURE__ */ o(
|
|
74
74
|
"path",
|
|
75
75
|
{
|
|
76
76
|
d: "M4.84 4.81494C4.84 4.82528 4.84 4.83563 4.84517 4.85647C4.85035 4.87732 4.8607 4.90835 4.87137 4.90897",
|
|
@@ -79,7 +79,7 @@ const c = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
79
79
|
strokeLinecap: "round"
|
|
80
80
|
}
|
|
81
81
|
),
|
|
82
|
-
/* @__PURE__ */
|
|
82
|
+
/* @__PURE__ */ o(
|
|
83
83
|
"path",
|
|
84
84
|
{
|
|
85
85
|
d: "M4.84 19.0908C4.84 19.1011 4.84 19.1115 4.84517 19.1323C4.85035 19.1532 4.8607 19.1842 4.87137 19.1848",
|
|
@@ -90,7 +90,7 @@ const c = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
90
90
|
)
|
|
91
91
|
]
|
|
92
92
|
}
|
|
93
|
-
), C =
|
|
93
|
+
), C = c(u);
|
|
94
94
|
export {
|
|
95
95
|
C as LineToolIcon
|
|
96
96
|
};
|
|
@@ -1,70 +1,70 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as d, jsx as
|
|
2
|
+
import { jsxs as d, jsx as o } from "react/jsx-runtime";
|
|
3
3
|
import k from "./IconBase.js";
|
|
4
4
|
import { forwardRef as C } from "react";
|
|
5
|
-
const
|
|
5
|
+
const c = ({ className: r, ariaHidden: e, title: t = "Live View", description: n, size: i = 24 }, s) => /* @__PURE__ */ d(
|
|
6
6
|
k,
|
|
7
7
|
{
|
|
8
8
|
size: i,
|
|
9
|
-
className:
|
|
9
|
+
className: r,
|
|
10
10
|
title: t,
|
|
11
11
|
description: n,
|
|
12
12
|
"aria-hidden": e,
|
|
13
13
|
ref: s,
|
|
14
14
|
children: [
|
|
15
|
-
/* @__PURE__ */
|
|
15
|
+
/* @__PURE__ */ o(
|
|
16
16
|
"path",
|
|
17
17
|
{
|
|
18
|
-
d: "
|
|
18
|
+
d: "M16.247 7.76099C17.37 8.88591 18.0007 10.4105 18.0007 12C18.0007 13.5895 17.37 15.1141 16.247 16.239",
|
|
19
19
|
stroke: "currentColor",
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
"stroke-width": "2",
|
|
21
|
+
"stroke-linecap": "round",
|
|
22
|
+
"stroke-linejoin": "round"
|
|
23
23
|
}
|
|
24
24
|
),
|
|
25
|
-
/* @__PURE__ */
|
|
25
|
+
/* @__PURE__ */ o(
|
|
26
26
|
"path",
|
|
27
27
|
{
|
|
28
|
-
d: "
|
|
28
|
+
d: "M19.075 4.93311C20.9479 6.80814 21.9999 9.34993 21.9999 12.0001C21.9999 14.6503 20.9479 17.1921 19.075 19.0671",
|
|
29
29
|
stroke: "currentColor",
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
"stroke-width": "2",
|
|
31
|
+
"stroke-linecap": "round",
|
|
32
|
+
"stroke-linejoin": "round"
|
|
33
33
|
}
|
|
34
34
|
),
|
|
35
|
-
/* @__PURE__ */
|
|
35
|
+
/* @__PURE__ */ o(
|
|
36
36
|
"path",
|
|
37
37
|
{
|
|
38
|
-
d: "
|
|
38
|
+
d: "M4.925 19.0671C3.05212 17.1921 2.00013 14.6503 2.00013 12.0001C2.00013 9.34993 3.05212 6.80814 4.925 4.93311",
|
|
39
39
|
stroke: "currentColor",
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
"stroke-width": "2",
|
|
41
|
+
"stroke-linecap": "round",
|
|
42
|
+
"stroke-linejoin": "round"
|
|
43
43
|
}
|
|
44
44
|
),
|
|
45
|
-
/* @__PURE__ */
|
|
45
|
+
/* @__PURE__ */ o(
|
|
46
46
|
"path",
|
|
47
47
|
{
|
|
48
|
-
d: "
|
|
48
|
+
d: "M7.753 16.239C6.63 15.1141 5.99928 13.5895 5.99928 12C5.99928 10.4105 6.63 8.88591 7.753 7.76099",
|
|
49
49
|
stroke: "currentColor",
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
"stroke-width": "2",
|
|
51
|
+
"stroke-linecap": "round",
|
|
52
|
+
"stroke-linejoin": "round"
|
|
53
53
|
}
|
|
54
54
|
),
|
|
55
|
-
/* @__PURE__ */
|
|
55
|
+
/* @__PURE__ */ o(
|
|
56
56
|
"path",
|
|
57
57
|
{
|
|
58
|
-
d: "
|
|
58
|
+
d: "M12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z",
|
|
59
59
|
stroke: "currentColor",
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
60
|
+
"stroke-width": "2",
|
|
61
|
+
"stroke-linecap": "round",
|
|
62
|
+
"stroke-linejoin": "round"
|
|
63
63
|
}
|
|
64
64
|
)
|
|
65
65
|
]
|
|
66
66
|
}
|
|
67
|
-
),
|
|
67
|
+
), p = C(c);
|
|
68
68
|
export {
|
|
69
|
-
|
|
69
|
+
p as LiveViewIcon
|
|
70
70
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs as C, jsx as o } from "react/jsx-runtime";
|
|
3
|
-
import
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const
|
|
6
|
-
|
|
3
|
+
import c from "./IconBase.js";
|
|
4
|
+
import { forwardRef as d } from "react";
|
|
5
|
+
const a = ({ className: r, ariaHidden: t, title: n = "Location", description: e, size: i = 24 }, s) => /* @__PURE__ */ C(
|
|
6
|
+
c,
|
|
7
7
|
{
|
|
8
8
|
size: i,
|
|
9
9
|
className: r,
|
|
@@ -34,7 +34,7 @@ const d = ({ className: r, ariaHidden: t, title: n = "Instagram", description: e
|
|
|
34
34
|
)
|
|
35
35
|
]
|
|
36
36
|
}
|
|
37
|
-
),
|
|
37
|
+
), L = d(a);
|
|
38
38
|
export {
|
|
39
|
-
|
|
39
|
+
L as LocationIcon
|
|
40
40
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as
|
|
2
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
3
3
|
import i from "./IconBase.js";
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const
|
|
4
|
+
import { forwardRef as c } from "react";
|
|
5
|
+
const s = ({ className: r, ariaHidden: t, title: e = "Metadata", description: a, size: n = 24 }, d) => /* @__PURE__ */ o(
|
|
6
6
|
i,
|
|
7
7
|
{
|
|
8
|
-
size:
|
|
9
|
-
className:
|
|
8
|
+
size: n,
|
|
9
|
+
className: r,
|
|
10
10
|
title: e,
|
|
11
|
-
description:
|
|
11
|
+
description: a,
|
|
12
12
|
"aria-hidden": t,
|
|
13
13
|
ref: d,
|
|
14
|
-
children: /* @__PURE__ */
|
|
14
|
+
children: /* @__PURE__ */ o(
|
|
15
15
|
"path",
|
|
16
16
|
{
|
|
17
17
|
d: "M3 12H6.80472C7.23083 12 7.62038 12.2408 7.81094 12.6219L9.75 16.5L14.25 7.5L16.1891 11.3781C16.3796 11.7592 16.7692 12 17.1953 12H21M5.25 21H18.75C19.9927 21 21 19.9927 21 18.75V5.25C21 4.00736 19.9927 3 18.75 3H5.25C4.00736 3 3 4.00736 3 5.25V18.75C3 19.9927 4.00736 21 5.25 21Z",
|
|
@@ -22,7 +22,7 @@ const c = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
22
22
|
}
|
|
23
23
|
)
|
|
24
24
|
}
|
|
25
|
-
), f = s
|
|
25
|
+
), f = c(s);
|
|
26
26
|
export {
|
|
27
27
|
f as MetadataIcon
|
|
28
28
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs as k, jsx as r } from "react/jsx-runtime";
|
|
3
|
-
import
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const
|
|
6
|
-
|
|
3
|
+
import c from "./IconBase.js";
|
|
4
|
+
import { forwardRef as i } from "react";
|
|
5
|
+
const a = ({ className: o, ariaHidden: t, title: e = "Ontology", description: n, size: s = 24 }, d) => /* @__PURE__ */ k(
|
|
6
|
+
c,
|
|
7
7
|
{
|
|
8
8
|
size: s,
|
|
9
9
|
className: o,
|
|
@@ -25,7 +25,7 @@ const i = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
25
25
|
/* @__PURE__ */ r("path", { d: "M14.4062 17.8035L10.125 13.25", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round" })
|
|
26
26
|
]
|
|
27
27
|
}
|
|
28
|
-
), L =
|
|
28
|
+
), L = i(a);
|
|
29
29
|
export {
|
|
30
30
|
L as OntologyIcon
|
|
31
31
|
};
|
package/dist/Icons/PlayIcon.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as
|
|
3
|
-
import
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const
|
|
6
|
-
|
|
2
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
3
|
+
import c from "./IconBase.js";
|
|
4
|
+
import { forwardRef as d } from "react";
|
|
5
|
+
const s = ({ className: r, ariaHidden: n, title: t = "Play", description: e, size: i = 24 }, a) => /* @__PURE__ */ o(
|
|
6
|
+
c,
|
|
7
7
|
{
|
|
8
|
-
size:
|
|
9
|
-
className:
|
|
8
|
+
size: i,
|
|
9
|
+
className: r,
|
|
10
10
|
title: t,
|
|
11
11
|
description: e,
|
|
12
12
|
"aria-hidden": n,
|
|
13
|
-
ref:
|
|
14
|
-
children: /* @__PURE__ */
|
|
13
|
+
ref: a,
|
|
14
|
+
children: /* @__PURE__ */ o(
|
|
15
15
|
"path",
|
|
16
16
|
{
|
|
17
17
|
d: "M4.63333 3.11108V20.8889L19.3667 12L4.63333 3.11108Z",
|
|
@@ -22,7 +22,7 @@ const d = ({ className: o, ariaHidden: n, title: t = "Instagram", description: e
|
|
|
22
22
|
}
|
|
23
23
|
)
|
|
24
24
|
}
|
|
25
|
-
),
|
|
25
|
+
), l = d(s);
|
|
26
26
|
export {
|
|
27
|
-
|
|
27
|
+
l as PlayIcon
|
|
28
28
|
};
|
package/dist/Icons/PlusIcon.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as o } from "react/jsx-runtime";
|
|
3
|
-
import
|
|
3
|
+
import t from "./IconBase.js";
|
|
4
4
|
import { forwardRef as C } from "react";
|
|
5
|
-
const c = ({ className: r, ariaHidden: e, title:
|
|
6
|
-
|
|
5
|
+
const c = ({ className: r, ariaHidden: e, title: l = "Plus", description: n, size: d = 24 }, i) => /* @__PURE__ */ o(
|
|
6
|
+
t,
|
|
7
7
|
{
|
|
8
|
-
size:
|
|
8
|
+
size: d,
|
|
9
9
|
className: r,
|
|
10
|
-
title:
|
|
11
|
-
description:
|
|
10
|
+
title: l,
|
|
11
|
+
description: n,
|
|
12
12
|
"aria-hidden": e,
|
|
13
|
-
ref:
|
|
13
|
+
ref: i,
|
|
14
14
|
children: /* @__PURE__ */ o(
|
|
15
15
|
"path",
|
|
16
16
|
{
|
|
@@ -21,7 +21,7 @@ const c = ({ className: r, ariaHidden: e, title: n = "Instagram", description: l
|
|
|
21
21
|
}
|
|
22
22
|
)
|
|
23
23
|
}
|
|
24
|
-
),
|
|
24
|
+
), m = C(c);
|
|
25
25
|
export {
|
|
26
|
-
|
|
26
|
+
m as PlusIcon
|
|
27
27
|
};
|
package/dist/Icons/ResetIcon.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as r } from "react/jsx-runtime";
|
|
3
|
-
import
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const
|
|
6
|
-
|
|
3
|
+
import i from "./IconBase.js";
|
|
4
|
+
import { forwardRef as s } from "react";
|
|
5
|
+
const f = ({ className: C, ariaHidden: o, title: e = "Reset", description: t, size: n = 24 }, c) => /* @__PURE__ */ r(
|
|
6
|
+
i,
|
|
7
7
|
{
|
|
8
8
|
size: n,
|
|
9
9
|
className: C,
|
|
10
|
-
title:
|
|
11
|
-
description:
|
|
10
|
+
title: e,
|
|
11
|
+
description: t,
|
|
12
12
|
"aria-hidden": o,
|
|
13
|
-
ref:
|
|
13
|
+
ref: c,
|
|
14
14
|
children: /* @__PURE__ */ r(
|
|
15
15
|
"path",
|
|
16
16
|
{
|
|
@@ -19,7 +19,7 @@ const m = ({ className: C, ariaHidden: o, title: t = "Instagram", description: e
|
|
|
19
19
|
}
|
|
20
20
|
)
|
|
21
21
|
}
|
|
22
|
-
), p =
|
|
22
|
+
), p = s(f);
|
|
23
23
|
export {
|
|
24
24
|
p as ResetIcon
|
|
25
25
|
};
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as l, jsx as
|
|
3
|
-
import
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const d = ({ className:
|
|
6
|
-
|
|
2
|
+
import { jsxs as l, jsx as o } from "react/jsx-runtime";
|
|
3
|
+
import n from "./IconBase.js";
|
|
4
|
+
import { forwardRef as t } from "react";
|
|
5
|
+
const d = ({ className: r, ariaHidden: C, title: s = "Scissors", description: e, size: i = 24 }, c) => /* @__PURE__ */ l(
|
|
6
|
+
n,
|
|
7
7
|
{
|
|
8
|
-
size:
|
|
9
|
-
className:
|
|
10
|
-
title:
|
|
11
|
-
description:
|
|
12
|
-
"aria-hidden":
|
|
13
|
-
ref:
|
|
8
|
+
size: i,
|
|
9
|
+
className: r,
|
|
10
|
+
title: s,
|
|
11
|
+
description: e,
|
|
12
|
+
"aria-hidden": C,
|
|
13
|
+
ref: c,
|
|
14
14
|
children: [
|
|
15
|
-
/* @__PURE__ */
|
|
15
|
+
/* @__PURE__ */ o(
|
|
16
16
|
"path",
|
|
17
17
|
{
|
|
18
18
|
fillRule: "evenodd",
|
|
@@ -21,7 +21,7 @@ const d = ({ className: C, ariaHidden: o, title: e = "Instagram", description: n
|
|
|
21
21
|
fill: "currentColor"
|
|
22
22
|
}
|
|
23
23
|
),
|
|
24
|
-
/* @__PURE__ */
|
|
24
|
+
/* @__PURE__ */ o(
|
|
25
25
|
"path",
|
|
26
26
|
{
|
|
27
27
|
d: "M19.6133 17.2773L14.4014 13.8027L16.2042 12.6008L22.3868 16.7226C21.7741 17.6416 20.5323 17.89 19.6133 17.2773Z",
|
|
@@ -30,7 +30,7 @@ const d = ({ className: C, ariaHidden: o, title: e = "Instagram", description: n
|
|
|
30
30
|
)
|
|
31
31
|
]
|
|
32
32
|
}
|
|
33
|
-
),
|
|
33
|
+
), a = t(d);
|
|
34
34
|
export {
|
|
35
|
-
|
|
35
|
+
a as ScissorsIcon
|
|
36
36
|
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs as c, jsx as r } from "react/jsx-runtime";
|
|
3
|
+
import d from "./IconBase.js";
|
|
4
|
+
import { forwardRef as a } from "react";
|
|
5
|
+
const k = ({ className: o, ariaHidden: t, title: e = "Settings", description: n, size: i = 24 }, s) => /* @__PURE__ */ c(
|
|
6
|
+
d,
|
|
7
|
+
{
|
|
8
|
+
size: i,
|
|
9
|
+
className: o,
|
|
10
|
+
title: e,
|
|
11
|
+
description: n,
|
|
12
|
+
"aria-hidden": t,
|
|
13
|
+
ref: s,
|
|
14
|
+
children: [
|
|
15
|
+
/* @__PURE__ */ r(
|
|
16
|
+
"path",
|
|
17
|
+
{
|
|
18
|
+
d: "M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915",
|
|
19
|
+
stroke: "currentColor",
|
|
20
|
+
strokeWidth: "2",
|
|
21
|
+
strokeLinecap: "round",
|
|
22
|
+
strokeLinejoin: "round"
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ r(
|
|
26
|
+
"circle",
|
|
27
|
+
{
|
|
28
|
+
cx: "12",
|
|
29
|
+
cy: "12",
|
|
30
|
+
r: "3",
|
|
31
|
+
stroke: "currentColor",
|
|
32
|
+
strokeWidth: "2",
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
}
|
|
36
|
+
)
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
), f = a(k);
|
|
40
|
+
export {
|
|
41
|
+
f as SettingsIcon
|
|
42
|
+
};
|
package/dist/Icons/TrashIcon.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { jsx as C } from "react/jsx-runtime";
|
|
3
3
|
import L from "./IconBase.js";
|
|
4
4
|
import { forwardRef as n } from "react";
|
|
5
|
-
const t = ({ className: r, ariaHidden: M, title: Z = "
|
|
5
|
+
const t = ({ className: r, ariaHidden: M, title: Z = "Trash", description: V, size: H = 24 }, o) => /* @__PURE__ */ C(
|
|
6
6
|
L,
|
|
7
7
|
{
|
|
8
8
|
size: H,
|
package/dist/Icons/UndoIcon.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as o } from "react/jsx-runtime";
|
|
3
|
-
import
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const
|
|
6
|
-
|
|
3
|
+
import c from "./IconBase.js";
|
|
4
|
+
import { forwardRef as s } from "react";
|
|
5
|
+
const a = ({ className: r, ariaHidden: n, title: t = "Undo", description: e, size: d = 24 }, i) => /* @__PURE__ */ o(
|
|
6
|
+
c,
|
|
7
7
|
{
|
|
8
8
|
size: d,
|
|
9
9
|
className: r,
|
|
@@ -22,7 +22,7 @@ const c = ({ className: r, ariaHidden: n, title: t = "Instagram", description: e
|
|
|
22
22
|
}
|
|
23
23
|
)
|
|
24
24
|
}
|
|
25
|
-
), C = a
|
|
25
|
+
), C = s(a);
|
|
26
26
|
export {
|
|
27
27
|
C as UndoIcon
|
|
28
28
|
};
|
|
@@ -1,28 +1,60 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as
|
|
3
|
-
import k from "./IconBase.js";
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
2
|
+
import { jsxs as t, jsx as o } from "react/jsx-runtime";
|
|
3
|
+
import k, { SvgIdContext as L } from "./IconBase.js";
|
|
4
|
+
import { forwardRef as h, useContext as l } from "react";
|
|
5
|
+
const u = ({ className: e, ariaHidden: n, title: i = "Zoom All", description: d, size: s = 24 }, c) => {
|
|
6
|
+
const r = l(L);
|
|
7
|
+
return /* @__PURE__ */ t(
|
|
8
|
+
k,
|
|
9
|
+
{
|
|
10
|
+
size: s,
|
|
11
|
+
className: e,
|
|
12
|
+
title: i,
|
|
13
|
+
description: d,
|
|
14
|
+
"aria-hidden": n,
|
|
15
|
+
ref: c,
|
|
16
|
+
children: [
|
|
17
|
+
/* @__PURE__ */ t("g", { "clip-path": `url(#${r}-clip0)`, children: [
|
|
18
|
+
/* @__PURE__ */ o("path", { d: "M21 19L10 19", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
19
|
+
/* @__PURE__ */ o(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
d: "M12 17L10 19L12 21",
|
|
23
|
+
stroke: "currentColor",
|
|
24
|
+
strokeWidth: "2",
|
|
25
|
+
strokeLinecap: "round",
|
|
26
|
+
strokeLinejoin: "round"
|
|
27
|
+
}
|
|
28
|
+
),
|
|
29
|
+
/* @__PURE__ */ o(
|
|
30
|
+
"path",
|
|
31
|
+
{
|
|
32
|
+
d: "M19 21L21 19L19 17",
|
|
33
|
+
stroke: "currentColor",
|
|
34
|
+
strokeWidth: "2",
|
|
35
|
+
strokeLinecap: "round",
|
|
36
|
+
strokeLinejoin: "round"
|
|
37
|
+
}
|
|
38
|
+
),
|
|
39
|
+
/* @__PURE__ */ o("path", { d: "M5 14L5 3", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
40
|
+
/* @__PURE__ */ o("path", { d: "M7 5L5 3L3 5", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
41
|
+
/* @__PURE__ */ o("path", { d: "M3 12L5 14L7 12", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
42
|
+
/* @__PURE__ */ o(
|
|
43
|
+
"path",
|
|
44
|
+
{
|
|
45
|
+
d: "M21 12C21 12.5304 20.7893 13.0391 20.4142 13.4142C20.0391 13.7893 19.5304 14 19 14L12 14C11.4696 14 10.9609 13.7893 10.5858 13.4142C10.2107 13.0391 10 12.5304 10 12L10 5C10 4.46957 10.2107 3.96086 10.5858 3.58579C10.9609 3.21071 11.4696 3 12 3L19 3C19.5304 3 20.0391 3.21071 20.4142 3.58579C20.7893 3.96086 21 4.46957 21 5L21 12Z",
|
|
46
|
+
stroke: "currentColor",
|
|
47
|
+
strokeWidth: "2",
|
|
48
|
+
strokeLinecap: "round",
|
|
49
|
+
strokeLinejoin: "round"
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
] }),
|
|
53
|
+
/* @__PURE__ */ o("defs", { children: /* @__PURE__ */ o("clipPath", { id: `${r}-clip0`, children: /* @__PURE__ */ o("rect", { width: "24", height: "24", fill: "white", transform: "matrix(-1 0 0 -1 24 24)" }) }) })
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
);
|
|
57
|
+
}, m = h(u);
|
|
26
58
|
export {
|
|
27
|
-
|
|
59
|
+
m as ZoomAllIcon
|
|
28
60
|
};
|
package/dist/Icons/ZoomXIcon.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs as d, jsx as o } from "react/jsx-runtime";
|
|
3
|
-
import
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const
|
|
6
|
-
|
|
3
|
+
import c from "./IconBase.js";
|
|
4
|
+
import { forwardRef as k } from "react";
|
|
5
|
+
const a = ({ className: r, ariaHidden: t, title: e = "Zoom X Axis", description: n, size: i = 24 }, s) => /* @__PURE__ */ d(
|
|
6
|
+
c,
|
|
7
7
|
{
|
|
8
|
-
size:
|
|
8
|
+
size: i,
|
|
9
9
|
className: r,
|
|
10
10
|
title: e,
|
|
11
11
|
description: n,
|
|
12
12
|
"aria-hidden": t,
|
|
13
|
-
ref:
|
|
13
|
+
ref: s,
|
|
14
14
|
children: [
|
|
15
15
|
/* @__PURE__ */ o(
|
|
16
16
|
"path",
|
|
@@ -35,7 +35,7 @@ const k = ({ className: r, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
35
35
|
/* @__PURE__ */ o("path", { d: "M2.375 12H21.625", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
36
36
|
]
|
|
37
37
|
}
|
|
38
|
-
), m =
|
|
38
|
+
), m = k(a);
|
|
39
39
|
export {
|
|
40
40
|
m as ZoomXIcon
|
|
41
41
|
};
|