@mirohq/design-system-icons 1.5.0 → 1.6.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.
- package/dist/main.js +138 -133
- package/dist/main.js.map +1 -1
- package/dist/module.js +136 -134
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +9 -3
- package/package.json +3 -3
- package/react/add-line-right.tsx +2 -4
- package/react/align-bottom-group.tsx +4 -3
- package/react/align-center-vertical.tsx +2 -4
- package/react/align-top-group.tsx +4 -3
- package/react/alignment-scale.tsx +0 -30
- package/react/bracket-close.tsx +34 -0
- package/react/bracket-open.tsx +34 -0
- package/react/distribute-horizontal.tsx +1 -1
- package/react/{align-bottom-2.tsx → dot-line-dot.tsx} +3 -7
- package/react/index.ts +4 -1
- package/react/plus-cross.tsx +34 -0
- package/react/rectangle-portrait-dash-square-top-center.tsx +1 -1
- package/react/rectangle-portrait-dash-square-top-left.tsx +1 -1
- package/react/rectangle-portrait-dash.tsx +1 -1
- package/react/rectangle-portrait-square-top-left.tsx +1 -1
- package/react/square-circles-two.tsx +6 -2
- package/react/square-line-square-dashed.tsx +2 -6
- package/react/text-h-three.tsx +1 -5
- package/react/text-styles.tsx +1 -5
- package/react/timeline-format.tsx +1 -2
- package/react/toolbar.tsx +1 -2
- package/svg/24/add-line-right.svg +1 -1
- package/svg/24/align-bottom-group.svg +1 -1
- package/svg/24/align-center-vertical.svg +1 -1
- package/svg/24/align-top-group.svg +1 -1
- package/svg/24/alignment-scale.svg +1 -1
- package/svg/24/bracket-close.svg +2 -0
- package/svg/24/bracket-open.svg +2 -0
- package/svg/24/distribute-horizontal.svg +1 -1
- package/svg/24/dot-line-dot.svg +2 -0
- package/svg/24/plus-cross.svg +2 -0
- package/svg/24/rectangle-portrait-dash-square-top-center.svg +1 -1
- package/svg/24/rectangle-portrait-dash-square-top-left.svg +1 -1
- package/svg/24/rectangle-portrait-dash.svg +1 -1
- package/svg/24/rectangle-portrait-square-top-left.svg +1 -1
- package/svg/24/square-circles-two.svg +1 -1
- package/svg/24/square-line-square-dashed.svg +1 -1
- package/svg/24/text-h-three.svg +1 -1
- package/svg/24/text-styles.svg +1 -1
- package/svg/24/timeline-format.svg +1 -1
- package/svg/24/toolbar.svg +1 -1
- package/svg/meta.json +20 -11
- package/svg/24/align-bottom-2.svg +0 -2
package/dist/main.js
CHANGED
|
@@ -102,13 +102,8 @@ const IconAddLineRight = react.forwardRef(
|
|
|
102
102
|
fill: "none",
|
|
103
103
|
ref: forwardRef2
|
|
104
104
|
},
|
|
105
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
106
|
-
|
|
107
|
-
{
|
|
108
|
-
fill: "currentColor",
|
|
109
|
-
d: "M6 3v18h-2v-18h2Zm10 4v4h4v2h-4v4h-2v-4h-4v-2h4v-4h2Z"
|
|
110
|
-
}
|
|
111
|
-
)
|
|
105
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M4 3h2v18h-2v-18ZM14 7h2v10h-2v-10Z" }),
|
|
106
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M10 11h10v2h-10v-2Z" })
|
|
112
107
|
);
|
|
113
108
|
}
|
|
114
109
|
);
|
|
@@ -147,7 +142,7 @@ const IconAiText = react.forwardRef(
|
|
|
147
142
|
);
|
|
148
143
|
IconAiText[designSystemBaseIcon.iconSymbol] = true;
|
|
149
144
|
|
|
150
|
-
const
|
|
145
|
+
const IconAlignBottomGroup = react.forwardRef(
|
|
151
146
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
152
147
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
153
148
|
return react.createElement(
|
|
@@ -165,41 +160,12 @@ const IconAlignBottom2 = react.forwardRef(
|
|
|
165
160
|
"path",
|
|
166
161
|
{
|
|
167
162
|
fill: "currentColor",
|
|
168
|
-
d: "
|
|
169
|
-
}
|
|
170
|
-
),
|
|
171
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
172
|
-
"path",
|
|
173
|
-
{
|
|
174
|
-
fill: "currentColor",
|
|
175
|
-
d: "m16.293 11.293-4.293 4.2929-4.293-4.2929-1.414 1.414 5 5h1.414l5-5-1.414-1.414Z"
|
|
163
|
+
d: "M7 3h3v13h-3v-13ZM14 9h3v7h-3v-7ZM3 19.5h18v1h-18v-1Z"
|
|
176
164
|
}
|
|
177
165
|
)
|
|
178
166
|
);
|
|
179
167
|
}
|
|
180
168
|
);
|
|
181
|
-
IconAlignBottom2[designSystemBaseIcon.iconSymbol] = true;
|
|
182
|
-
|
|
183
|
-
const IconAlignBottomGroup = react.forwardRef(
|
|
184
|
-
({ size = "medium", ...props }, forwardRef2) => {
|
|
185
|
-
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
186
|
-
return react.createElement(
|
|
187
|
-
StyledIcon,
|
|
188
|
-
{
|
|
189
|
-
...props,
|
|
190
|
-
debug,
|
|
191
|
-
"aria-hidden": true,
|
|
192
|
-
size,
|
|
193
|
-
viewBox: "0 0 24 24",
|
|
194
|
-
fill: "none",
|
|
195
|
-
ref: forwardRef2
|
|
196
|
-
},
|
|
197
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M21 19.5v1h-18v-1h18ZM7 16v-13h3v13h-3Z" }),
|
|
198
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M7 3h3v13h-3v-13ZM14 16v-7h3v7h-3Z" }),
|
|
199
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M14 9h3v7h-3v-7Z" })
|
|
200
|
-
);
|
|
201
|
-
}
|
|
202
|
-
);
|
|
203
169
|
IconAlignBottomGroup[designSystemBaseIcon.iconSymbol] = true;
|
|
204
170
|
|
|
205
171
|
const IconAlignBottom = react.forwardRef(
|
|
@@ -268,13 +234,8 @@ const IconAlignCenterVertical = react.forwardRef(
|
|
|
268
234
|
fill: "none",
|
|
269
235
|
ref: forwardRef2
|
|
270
236
|
},
|
|
271
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
272
|
-
|
|
273
|
-
{
|
|
274
|
-
fill: "currentColor",
|
|
275
|
-
d: "M10 11.5h4v-5.5h3v5.5h4v1h-4v5.5h-3v-5.5h-4v7.5h-3v-7.5h-4v-1h4v-7.5h3v7.5Z"
|
|
276
|
-
}
|
|
277
|
-
)
|
|
237
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M7 4h3v16h-3v-16ZM14 6h3v12h-3v-12Z" }),
|
|
238
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M3 11.5h18v1h-18v-1Z" })
|
|
278
239
|
);
|
|
279
240
|
}
|
|
280
241
|
);
|
|
@@ -368,9 +329,13 @@ const IconAlignTopGroup = react.forwardRef(
|
|
|
368
329
|
fill: "none",
|
|
369
330
|
ref: forwardRef2
|
|
370
331
|
},
|
|
371
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
372
|
-
|
|
373
|
-
|
|
332
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
333
|
+
"path",
|
|
334
|
+
{
|
|
335
|
+
fill: "currentColor",
|
|
336
|
+
d: "M3 3.5h18v1h-18v-1ZM7 8h3v13h-3v-13ZM14 8h3v7h-3v-7Z"
|
|
337
|
+
}
|
|
338
|
+
)
|
|
374
339
|
);
|
|
375
340
|
}
|
|
376
341
|
);
|
|
@@ -425,54 +390,6 @@ const IconAlignmentScale = react.forwardRef(
|
|
|
425
390
|
clipRule: "evenodd"
|
|
426
391
|
}
|
|
427
392
|
),
|
|
428
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
429
|
-
"path",
|
|
430
|
-
{
|
|
431
|
-
fill: "currentColor",
|
|
432
|
-
fillRule: "evenodd",
|
|
433
|
-
d: "m16.1758 20.8096-1.0283 1.0283c-2.8458-1.7136-6.4467-1.7116-9.29.0059l-.9864-.9864 4.9648-10.6787h1.3272l5.0127 10.6309Zm-8.1621-1.9707a11.0703 11.0703 0 0 1 5.0254.0088l-2.5323-5.3711-2.4931 5.3623Z",
|
|
434
|
-
clipRule: "evenodd"
|
|
435
|
-
}
|
|
436
|
-
),
|
|
437
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
438
|
-
"path",
|
|
439
|
-
{
|
|
440
|
-
fill: "currentColor",
|
|
441
|
-
fillRule: "evenodd",
|
|
442
|
-
d: "m16.1758 20.8096-1.0283 1.0283c-2.8458-1.7136-6.4467-1.7116-9.29.0059l-.9864-.9864 4.9648-10.6787h1.3272l5.0127 10.6309Zm-8.1621-1.9707a11.0703 11.0703 0 0 1 5.0254.0088l-2.5323-5.3711-2.4931 5.3623Z",
|
|
443
|
-
clipRule: "evenodd"
|
|
444
|
-
}
|
|
445
|
-
),
|
|
446
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
447
|
-
"path",
|
|
448
|
-
{
|
|
449
|
-
fill: "currentColor",
|
|
450
|
-
fillRule: "evenodd",
|
|
451
|
-
d: "m16.1758 20.8096-1.0283 1.0283c-2.8458-1.7136-6.4467-1.7116-9.29.0059l-.9864-.9864 4.9648-10.6787h1.3272l5.0127 10.6309Zm-8.1621-1.9707a11.0703 11.0703 0 0 1 5.0254.0088l-2.5323-5.3711-2.4931 5.3623Z",
|
|
452
|
-
clipRule: "evenodd"
|
|
453
|
-
}
|
|
454
|
-
),
|
|
455
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
456
|
-
"path",
|
|
457
|
-
{
|
|
458
|
-
fill: "currentColor",
|
|
459
|
-
d: "M22 4v8l-1 1h-6v-2h5v-6h-2v3h-2v-3h-3v3h-2v-3h-3v3h-2v-3h-2v6h2v2h-3l-1-1v-8l1-1h18l1 1Z"
|
|
460
|
-
}
|
|
461
|
-
),
|
|
462
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
463
|
-
"path",
|
|
464
|
-
{
|
|
465
|
-
fill: "currentColor",
|
|
466
|
-
d: "M22 4v8l-1 1h-6v-2h5v-6h-2v3h-2v-3h-3v3h-2v-3h-3v3h-2v-3h-2v6h2v2h-3l-1-1v-8l1-1h18l1 1Z"
|
|
467
|
-
}
|
|
468
|
-
),
|
|
469
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
470
|
-
"path",
|
|
471
|
-
{
|
|
472
|
-
fill: "currentColor",
|
|
473
|
-
d: "M22 4v8l-1 1h-6v-2h5v-6h-2v3h-2v-3h-3v3h-2v-3h-3v3h-2v-3h-2v6h2v2h-3l-1-1v-8l1-1h18l1 1Z"
|
|
474
|
-
}
|
|
475
|
-
),
|
|
476
393
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
477
394
|
"path",
|
|
478
395
|
{
|
|
@@ -2027,6 +1944,32 @@ const IconBoxCaptions = react.forwardRef(
|
|
|
2027
1944
|
);
|
|
2028
1945
|
IconBoxCaptions[designSystemBaseIcon.iconSymbol] = true;
|
|
2029
1946
|
|
|
1947
|
+
const IconBracketClose = react.forwardRef(
|
|
1948
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
1949
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1950
|
+
return react.createElement(
|
|
1951
|
+
StyledIcon,
|
|
1952
|
+
{
|
|
1953
|
+
...props,
|
|
1954
|
+
debug,
|
|
1955
|
+
"aria-hidden": true,
|
|
1956
|
+
size,
|
|
1957
|
+
viewBox: "0 0 24 24",
|
|
1958
|
+
fill: "none",
|
|
1959
|
+
ref: forwardRef2
|
|
1960
|
+
},
|
|
1961
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1962
|
+
"path",
|
|
1963
|
+
{
|
|
1964
|
+
fill: "currentColor",
|
|
1965
|
+
d: "M16.082 11.9995c0 3.893-1.7125 7.3876-4.4218 9.7686l-1.3204-1.502c2.2957-2.0174 3.7422-4.9728 3.7422-8.2666-.0001-3.2935-1.4466-6.2482-3.7422-8.2656l1.3204-1.502c2.7092 2.381 4.4217 5.8749 4.4218 9.7676Z"
|
|
1966
|
+
}
|
|
1967
|
+
)
|
|
1968
|
+
);
|
|
1969
|
+
}
|
|
1970
|
+
);
|
|
1971
|
+
IconBracketClose[designSystemBaseIcon.iconSymbol] = true;
|
|
1972
|
+
|
|
2030
1973
|
const IconBracketCurlyLeft = react.forwardRef(
|
|
2031
1974
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
2032
1975
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2079,6 +2022,32 @@ const IconBracketCurlyRight = react.forwardRef(
|
|
|
2079
2022
|
);
|
|
2080
2023
|
IconBracketCurlyRight[designSystemBaseIcon.iconSymbol] = true;
|
|
2081
2024
|
|
|
2025
|
+
const IconBracketOpen = react.forwardRef(
|
|
2026
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2027
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
2028
|
+
return react.createElement(
|
|
2029
|
+
StyledIcon,
|
|
2030
|
+
{
|
|
2031
|
+
...props,
|
|
2032
|
+
debug,
|
|
2033
|
+
"aria-hidden": true,
|
|
2034
|
+
size,
|
|
2035
|
+
viewBox: "0 0 24 24",
|
|
2036
|
+
fill: "none",
|
|
2037
|
+
ref: forwardRef2
|
|
2038
|
+
},
|
|
2039
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2040
|
+
"path",
|
|
2041
|
+
{
|
|
2042
|
+
fill: "currentColor",
|
|
2043
|
+
d: "M8 12.0005c0-3.893 1.7125-7.3876 4.4219-9.7686l1.3203 1.502c-2.2957 2.0174-3.7422 4.9728-3.7422 8.2666.0001 3.2936 1.4466 6.2482 3.7422 8.2656l-1.3203 1.5019c-2.7093-2.3809-4.4218-5.8748-4.4219-9.7675Z"
|
|
2044
|
+
}
|
|
2045
|
+
)
|
|
2046
|
+
);
|
|
2047
|
+
}
|
|
2048
|
+
);
|
|
2049
|
+
IconBracketOpen[designSystemBaseIcon.iconSymbol] = true;
|
|
2050
|
+
|
|
2082
2051
|
const IconBracketsAngleSlash = react.forwardRef(
|
|
2083
2052
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
2084
2053
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -5013,7 +4982,7 @@ const IconDistributeHorizontal = react.forwardRef(
|
|
|
5013
4982
|
"path",
|
|
5014
4983
|
{
|
|
5015
4984
|
fill: "currentColor",
|
|
5016
|
-
d: "
|
|
4985
|
+
d: "M3 3h2v18h-2v-18ZM19 3h2v18h-2v-18ZM10 7h4v10h-4v-10Z"
|
|
5017
4986
|
}
|
|
5018
4987
|
)
|
|
5019
4988
|
);
|
|
@@ -5106,6 +5075,32 @@ const IconDollarSignCurrency = react.forwardRef(
|
|
|
5106
5075
|
);
|
|
5107
5076
|
IconDollarSignCurrency[designSystemBaseIcon.iconSymbol] = true;
|
|
5108
5077
|
|
|
5078
|
+
const IconDotLineDot = react.forwardRef(
|
|
5079
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
5080
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5081
|
+
return react.createElement(
|
|
5082
|
+
StyledIcon,
|
|
5083
|
+
{
|
|
5084
|
+
...props,
|
|
5085
|
+
debug,
|
|
5086
|
+
"aria-hidden": true,
|
|
5087
|
+
size,
|
|
5088
|
+
viewBox: "0 0 24 24",
|
|
5089
|
+
fill: "none",
|
|
5090
|
+
ref: forwardRef2
|
|
5091
|
+
},
|
|
5092
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5093
|
+
"path",
|
|
5094
|
+
{
|
|
5095
|
+
fill: "currentColor",
|
|
5096
|
+
d: "M20 11v2h-16v-2h16ZM11 6h2v2h-2v-2ZM11 16h2v2h-2v-2Z"
|
|
5097
|
+
}
|
|
5098
|
+
)
|
|
5099
|
+
);
|
|
5100
|
+
}
|
|
5101
|
+
);
|
|
5102
|
+
IconDotLineDot[designSystemBaseIcon.iconSymbol] = true;
|
|
5103
|
+
|
|
5109
5104
|
const IconDotVoting = react.forwardRef(
|
|
5110
5105
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
5111
5106
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -9642,6 +9637,32 @@ const IconPlusBox = react.forwardRef(
|
|
|
9642
9637
|
);
|
|
9643
9638
|
IconPlusBox[designSystemBaseIcon.iconSymbol] = true;
|
|
9644
9639
|
|
|
9640
|
+
const IconPlusCross = react.forwardRef(
|
|
9641
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
9642
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
9643
|
+
return react.createElement(
|
|
9644
|
+
StyledIcon,
|
|
9645
|
+
{
|
|
9646
|
+
...props,
|
|
9647
|
+
debug,
|
|
9648
|
+
"aria-hidden": true,
|
|
9649
|
+
size,
|
|
9650
|
+
viewBox: "0 0 24 24",
|
|
9651
|
+
fill: "none",
|
|
9652
|
+
ref: forwardRef2
|
|
9653
|
+
},
|
|
9654
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9655
|
+
"path",
|
|
9656
|
+
{
|
|
9657
|
+
fill: "currentColor",
|
|
9658
|
+
d: "m21.9502 13.4648-3.5361 3.5352 3.5361 3.5352-1.415 1.415-3.5352-3.5361-3.5352 3.5361-1.415-1.415 3.5361-3.5352-3.5361-3.5352 1.415-1.415 3.5352 3.5361 3.5352-3.5361 1.415 1.415Zm-14.9502-4.4648h-5v-2h5v-5h2v5h5v2h-5v5h-2v-5Z"
|
|
9659
|
+
}
|
|
9660
|
+
)
|
|
9661
|
+
);
|
|
9662
|
+
}
|
|
9663
|
+
);
|
|
9664
|
+
IconPlusCross[designSystemBaseIcon.iconSymbol] = true;
|
|
9665
|
+
|
|
9645
9666
|
const IconPlusSquare = react.forwardRef(
|
|
9646
9667
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
9647
9668
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -10780,7 +10801,7 @@ const IconRectanglePortraitDashSquareTopCenter = react.forwardRef(({ size = "med
|
|
|
10780
10801
|
"path",
|
|
10781
10802
|
{
|
|
10782
10803
|
fill: "currentColor",
|
|
10783
|
-
d: "M4
|
|
10804
|
+
d: "M4.7998 18c0 .5523.7983 1.2002 1.3506 1.2002h2.25v1.7998h-2.4004c-1.6569 0-3-1.3431-3-3v-2.4004h1.7998v2.4004ZM13.7998 21h-3.5996v-1.7998h3.5996v1.7998ZM21 18c0 1.6569-1.3431 3-3 3h-2.4004v-1.7998h2.4004c.5523 0 1.2002-.6479 1.2002-1.2002v-2.4004h1.7998v2.4004ZM4.7998 13.7998h-1.7998v-3.5996h1.7998v3.5996ZM21 13.7998h-1.7998v-3.5996h1.7998v3.5996ZM18 3c1.6569 0 3 1.3431 3 3v2.4004h-1.7998v-2.4004c0-.5523-.6479-1.2002-1.2002-1.2002h-2v6.2002h-8v-6.2002h-2c-.5523 0-1.2002.648-1.2002 1.2002v2.4004h-1.7998v-2.4004c0-1.6569 1.3431-3 3-3h12Z"
|
|
10784
10805
|
}
|
|
10785
10806
|
)
|
|
10786
10807
|
);
|
|
@@ -10804,7 +10825,7 @@ const IconRectanglePortraitDashSquareTopLeft = react.forwardRef(({ size = "mediu
|
|
|
10804
10825
|
"path",
|
|
10805
10826
|
{
|
|
10806
10827
|
fill: "currentColor",
|
|
10807
|
-
d: "M4
|
|
10828
|
+
d: "M4.7998 18c0 .5523.7983 1.2002 1.3506 1.2002h2.25v1.7998h-2.4004c-1.6569 0-3-1.3431-3-3v-2.4004h1.7998v2.4004ZM13.7998 21h-3.5996v-1.7998h3.5996v1.7998ZM21 18c0 1.6569-1.3431 3-3 3h-2.4004v-1.7998h2.4004c.5523 0 1.2002-.6479 1.2002-1.2002v-2.4004h1.7998v2.4004ZM13.7998 3v1.7998h-1.7998v6.2002h-7.2002v2.7998h-1.7998v-7.7998c0-1.6569 1.3431-3 3-3h7.7998ZM21 13.7998h-1.7998v-3.5996h1.7998v3.5996ZM18 3c1.6569 0 3 1.3431 3 3v2.4004h-1.7998v-2.4004c0-.5523-.6479-1.2002-1.2002-1.2002h-2.4004v-1.7998h2.4004Z"
|
|
10808
10829
|
}
|
|
10809
10830
|
)
|
|
10810
10831
|
);
|
|
@@ -10830,7 +10851,7 @@ const IconRectanglePortraitDash = react.forwardRef(
|
|
|
10830
10851
|
{
|
|
10831
10852
|
fill: "currentColor",
|
|
10832
10853
|
fillRule: "evenodd",
|
|
10833
|
-
d: "
|
|
10854
|
+
d: "M6 4.8c-.5523 0-1.2.6477-1.2 1.2v2.4h-1.8v-2.4c0-1.6569 1.3431-3 3-3h2.4v1.8h-2.4Zm7.8 0h-3.6v-1.8h3.6v1.8Zm4.2 0h-2.4v-1.8h2.4c1.6569 0 3 1.3431 3 3v2.4h-1.8v-2.4c0-.5523-.6477-1.2-1.2-1.2Zm-13.2 5.4v3.6h-1.8v-3.6h1.8Zm14.4 3.6v-3.6h1.8v3.6h-1.8Zm-14.4 1.8v2.4c0 .5523.7977 1.2 1.35 1.2h2.25v1.8h-2.4c-1.6569 0-3-1.3431-3-3v-2.4h1.8Zm14.4 2.4v-2.4h1.8v2.4c0 1.6569-1.3431 3-3 3h-2.4v-1.8h2.4c.5523 0 1.2-.6477 1.2-1.2Zm-9 1.2h3.6v1.8h-3.6v-1.8Z",
|
|
10834
10855
|
clipRule: "evenodd"
|
|
10835
10856
|
}
|
|
10836
10857
|
)
|
|
@@ -10884,7 +10905,7 @@ const IconRectanglePortraitSquareTopLeft = react.forwardRef(
|
|
|
10884
10905
|
{
|
|
10885
10906
|
fill: "currentColor",
|
|
10886
10907
|
fillRule: "evenodd",
|
|
10887
|
-
d: "
|
|
10908
|
+
d: "M18 3c1.6569 0 3 1.3431 3 3v12c0 1.6569-1.3431 3-3 3h-12c-1.6569 0-3-1.3431-3-3v-12c0-1.6569 1.3431-3 3-3h12Zm-6 8h-7v7c0 .5523.4477 1 1 1h12c.5523 0 1-.4477 1-1v-12c0-.5523-.4477-1-1-1h-6v6Z",
|
|
10888
10909
|
clipRule: "evenodd"
|
|
10889
10910
|
}
|
|
10890
10911
|
)
|
|
@@ -12912,18 +12933,22 @@ const IconSquareCirclesTwo = react.forwardRef(
|
|
|
12912
12933
|
fill: "none",
|
|
12913
12934
|
ref: forwardRef2
|
|
12914
12935
|
},
|
|
12936
|
+
/* @__PURE__ */ jsxRuntime.jsxs("g", { fill: "currentColor", opacity: 0.9, children: [
|
|
12937
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 6c0-.5523-.4477-1-1-1h-12c-.5523 0-1 .4477-1 1v12c0 .5523.4477 1 1 1h12c.5523 0 1-.4477 1-1v-12Zm2 12c0 1.6569-1.3431 3-3 3h-12c-1.6569 0-3-1.3431-3-3v-12c0-1.6569 1.3431-3 3-3h12c1.6569 0 3 1.3431 3 3v12Z" }),
|
|
12938
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14.5 14.5c0 1.3807-1.1193 2.5-2.5 2.5s-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5 2.5 1.1193 2.5 2.5ZM22.5 9.5c0 1.3807-1.1193 2.5-2.5 2.5s-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5 2.5 1.1193 2.5 2.5Z" })
|
|
12939
|
+
] }),
|
|
12915
12940
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12916
12941
|
"path",
|
|
12917
12942
|
{
|
|
12918
12943
|
fill: "currentColor",
|
|
12919
|
-
d: "M19 6c0-.5523-.4477-1-1-1h-12c-.5523 0-1 .4477-1 1v12c0 .5523.4477 1 1 1h12c.5523 0 1-.4477 1-1v-
|
|
12944
|
+
d: "M19 6c0-.5523-.4477-1-1-1h-12c-.5523 0-1 .4477-1 1v12c0 .5523.4477 1 1 1h12c.5523 0 1-.4477 1-1v-6.184s-1.5-.6158-1.5-2.316c0-1.7002 1.5-2.2958 1.5-2.2958v-1.2042Zm2 12c0 1.6569-1.3431 3-3 3h-12c-1.6569 0-3-1.3431-3-3v-12c0-1.6569 1.3431-3 3-3h12c1.6569 0 3 1.3431 3 3v12Z"
|
|
12920
12945
|
}
|
|
12921
12946
|
),
|
|
12922
12947
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12923
12948
|
"path",
|
|
12924
12949
|
{
|
|
12925
12950
|
fill: "currentColor",
|
|
12926
|
-
d: "M14.5 14.5c0 1.3807-1.1193 2.5-2.5 2.5s-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5 2.5 1.1193 2.5 2.
|
|
12951
|
+
d: "M14.5 14.5c0 1.3807-1.1193 2.5-2.5 2.5s-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5 2.5 1.1193 2.5 2.5Z"
|
|
12927
12952
|
}
|
|
12928
12953
|
)
|
|
12929
12954
|
);
|
|
@@ -12978,19 +13003,12 @@ const IconSquareLineSquareDashed = react.forwardRef(
|
|
|
12978
13003
|
fill: "none",
|
|
12979
13004
|
ref: forwardRef2
|
|
12980
13005
|
},
|
|
12981
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12982
|
-
"path",
|
|
12983
|
-
{
|
|
12984
|
-
fill: "currentColor",
|
|
12985
|
-
d: "M4 18.667c.0003.6136.8865 1.333 1.5 1.333h2.5v2h-2.667c-1.8407-.0002-3.3328-1.4923-3.333-3.333v-2.667h2v2.667ZM14 22h-4v-2h4v2ZM22 18.667c-.0002 1.8407-1.4923 3.3328-3.333 3.333h-2.667v-2h2.667c.6135-.0003 1.3327-.7195 1.333-1.333v-2.667h2v2.667Z"
|
|
12986
|
-
}
|
|
12987
|
-
),
|
|
12988
13006
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12989
13007
|
"path",
|
|
12990
13008
|
{
|
|
12991
13009
|
fill: "currentColor",
|
|
12992
13010
|
fillRule: "evenodd",
|
|
12993
|
-
d: "
|
|
13011
|
+
d: "M17.1667 4.7h-2.2667v-1.7h2.2667c1.5648 0 2.8333 1.2685 2.8333 2.8333v2.2667h-1.7v-2.2667c0-.5216-.6117-1.1333-1.1333-1.1333Zm1.1333 8.5v-3.4h1.7v3.4h-1.7Zm-13.6 1.7v2.2667c0 .5216.7534 1.1333 1.275 1.1333h2.125v1.7h-2.2667c-1.5648 0-2.8333-1.2685-2.8333-2.8333v-2.2667h1.7Zm13.6 2.2667v-2.2667h1.7v2.2667c0 1.5648-1.2685 2.8333-2.8333 2.8333h-2.2667v-1.7h2.2667c.5216 0 1.1333-.6117 1.1333-1.1333Zm-8.5 1.1333h3.4v1.7h-3.4v-1.7Z",
|
|
12994
13012
|
clipRule: "evenodd"
|
|
12995
13013
|
}
|
|
12996
13014
|
),
|
|
@@ -12998,7 +13016,7 @@ const IconSquareLineSquareDashed = react.forwardRef(
|
|
|
12998
13016
|
"path",
|
|
12999
13017
|
{
|
|
13000
13018
|
fill: "currentColor",
|
|
13001
|
-
d: "
|
|
13019
|
+
d: "M14 3v11h-11v-8c0-1.6569 1.3431-3 3-3h8Zm-9 9h7v-7h-6c-.5523 0-1 .4477-1 1v6Z"
|
|
13002
13020
|
}
|
|
13003
13021
|
)
|
|
13004
13022
|
);
|
|
@@ -14536,14 +14554,7 @@ const IconTextHThree = react.forwardRef(
|
|
|
14536
14554
|
"path",
|
|
14537
14555
|
{
|
|
14538
14556
|
fill: "currentColor",
|
|
14539
|
-
d: "M3
|
|
14540
|
-
}
|
|
14541
|
-
),
|
|
14542
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
14543
|
-
"path",
|
|
14544
|
-
{
|
|
14545
|
-
fill: "currentColor",
|
|
14546
|
-
d: "M21 8.5c0-1.3807-1.1193-2.5-2.5-2.5h-4.5v-2h4.5c2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-4.5v-2h4.5c1.3807 0 2.5-1.1193 2.5-2.5Z"
|
|
14557
|
+
d: "M3 11h7v-7h2v16h-2v-7h-7v7h-2v-16h2v7ZM18.5 4c2.4853 0 4.5 2.0147 4.5 4.5 0 1.414-.6528 2.675-1.6729 3.5 1.0201.825 1.6729 2.0859 1.6729 3.5 0 2.4853-2.0147 4.5-4.5 4.5h-4.5v-2h4.5c1.3807 0 2.5-1.1193 2.5-2.5s-1.1193-2.5-2.5-2.5h-4.5v-2h4.5c1.3807 0 2.5-1.1193 2.5-2.5s-1.1193-2.5-2.5-2.5h-4.5v-2h4.5Z"
|
|
14547
14558
|
}
|
|
14548
14559
|
)
|
|
14549
14560
|
);
|
|
@@ -14754,19 +14765,12 @@ const IconTextStyles = react.forwardRef(
|
|
|
14754
14765
|
fill: "none",
|
|
14755
14766
|
ref: forwardRef2
|
|
14756
14767
|
},
|
|
14757
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
14758
|
-
"path",
|
|
14759
|
-
{
|
|
14760
|
-
fill: "currentColor",
|
|
14761
|
-
d: "M14.5729 13.5c.8731-.5527 2.0382-.9011 3.0996-.4062.2513.1171.4731.2677.667.4433a7.2977 7.2977 0 0 1 .1553-.2988 5.5403 5.5403 0 0 1 .1142-.1983c.0145-.024.026-.044.0352-.0586.0044-.007.0086-.0127.0117-.0175.0015-.0024.0027-.0051.0039-.0069l.0029-.0029s.0003-.0012.8369.5459l.8379.5469c-.0027.0043-.0088.0134-.0166.0263a3.535 3.535 0 0 0-.0732.127 6.0423 6.0423 0 0 0-.2539.5273c-.1975.4632-.4149 1.1173-.5 1.8829-.0852.7665-.176 1.6671-.0967 2.4208.0874.8298.3189.9875.416 1.0196.2068.0682.4978.0124.8711-.2305.1694-.1102.3146-.2346.419-.333a2.825 2.825 0 0 0 .1386-.1396s-.0004.0008.7578.6523c.7518.6459.7588.6523.7588.6523l-.0039.0039a.2593.2593 0 0 1-.0068.0079l-.0176.0195a4.698 4.698 0 0 1-.2549.2598 5.0616 5.0616 0 0 1-.7002.5527c-.557.3625-1.5163.8065-2.5879.4531-.7395-.2439-1.1765-.7673-1.4355-1.3437-.3326.3492-.6941.6538-1.0742.8945-.8731.5527-2.0382.901-3.0996.4062-1.0199-.4755-1.5512-1.5019-1.7237-2.5166-.1758-1.0351-.0195-2.2213.4893-3.3125.5064-1.0859 1.3242-2.004 2.2295-2.5771Zm2.2549 1.4062c-.175-.0815-.582-.0979-1.1856.2842-.5714.3619-1.1364.982-1.4863 1.7325-.3473.745-.4339 1.5205-.3301 2.1318.1075.632.3801.938.5967 1.0391.175.0815.5819.0979 1.1855-.2842.5714-.3619 1.1355-.9821 1.4854-1.7325.3474-.745.4349-1.5204.3311-2.1318-.1074-.6317-.3801-.9379-.5967-1.0391Z"
|
|
14762
|
-
}
|
|
14763
|
-
),
|
|
14764
14768
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
14765
14769
|
"path",
|
|
14766
14770
|
{
|
|
14767
14771
|
fill: "currentColor",
|
|
14768
14772
|
fillRule: "evenodd",
|
|
14769
|
-
d: "
|
|
14773
|
+
d: "M14.5729 13.5c.8731-.5527 2.0382-.9011 3.0996-.4062.2513.1171.4731.2677.667.4433a7.2977 7.2977 0 0 1 .1553-.2988 5.5403 5.5403 0 0 1 .1142-.1983c.0145-.024.026-.044.0352-.0586.0044-.007.0086-.0127.0117-.0175.0015-.0024.0027-.0051.0039-.0069l.0029-.0029s.0003-.0012.8369.5459l.8379.5469c-.0027.0043-.0088.0134-.0166.0263a3.535 3.535 0 0 0-.0732.127 6.0423 6.0423 0 0 0-.2539.5273c-.1975.4632-.4149 1.1173-.5 1.8829-.0852.7665-.176 1.6671-.0967 2.4208.0874.8298.3189.9875.416 1.0196.2068.0682.4978.0124.8711-.2305.1694-.1102.3146-.2346.419-.333a2.825 2.825 0 0 0 .1386-.1396s-.0004.0008.7578.6523c.7518.6459.7588.6523.7588.6523l-.0039.0039a.2593.2593 0 0 1-.0068.0079l-.0176.0195a4.698 4.698 0 0 1-.2549.2598 5.0616 5.0616 0 0 1-.7002.5527c-.557.3625-1.5163.8065-2.5879.4531-.7395-.2439-1.1765-.7673-1.4355-1.3437-.3326.3492-.6941.6538-1.0742.8945-.8731.5527-2.0382.901-3.0996.4062-1.0199-.4755-1.5512-1.5019-1.7237-2.5166-.1758-1.0351-.0195-2.2213.4893-3.3125.5064-1.0859 1.3242-2.004 2.2295-2.5771Zm2.2549 1.4062c-.175-.0815-.582-.0979-1.1856.2842-.5714.3619-1.1364.982-1.4863 1.7325-.3473.745-.4339 1.5205-.3301 2.1318.1075.632.3801.938.5967 1.0391.175.0815.5819.0979 1.1855-.2842.5714-.3619 1.1355-.9821 1.4854-1.7325.3474-.745.4349-1.5204.3311-2.1318-.1074-.6317-.3801-.9379-.5967-1.0391ZM5.193 13h5.5862l.5564 1.669a9.1586 9.1586 0 0 1 1.5095-1.796l-.3964-1.1892a.9418.9418 0 0 0-.0167-.0462l-3.5-9h-1.864l-3.5 9-.0043.0113-1.8511 4.9363 1.8726.7023 1.6078-4.2875Zm2.807-7.241-2.0381 5.241h4.0763l-2.0382-5.241Z",
|
|
14770
14774
|
clipRule: "evenodd"
|
|
14771
14775
|
}
|
|
14772
14776
|
)
|
|
@@ -14931,13 +14935,12 @@ const IconTimelineFormat = react.forwardRef(
|
|
|
14931
14935
|
fill: "none",
|
|
14932
14936
|
ref: forwardRef2
|
|
14933
14937
|
},
|
|
14934
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "currentColor", d: "M14 17h-5v-2h5v2ZM14 9h-7v-2h7v2Z" }),
|
|
14935
14938
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
14936
14939
|
"path",
|
|
14937
14940
|
{
|
|
14938
14941
|
fill: "currentColor",
|
|
14939
14942
|
fillRule: "evenodd",
|
|
14940
|
-
d: "
|
|
14943
|
+
d: "M11 16c1.0356.0001 1.887.7873 1.9893 1.7959l.0107.2041v2c0 1.1046-.8954 2-2 2h-4c-1.0357 0-1.887-.7872-1.9893-1.7959l-.0107-.2041v-2l.0098-.2041c.0954-.9413.844-1.6893 1.7851-1.7852l.2051-.0107h4Zm0 2h-4v2h4v-2ZM20 9c1.0357 0 1.887.7872 1.9893 1.7959l.0107.2041v2c0 1.1046-.8954 2-2 2h-9c-1.1046 0-2-.8954-2-2v-2l.0107-.2041c.0955-.9415.8437-1.6897 1.7852-1.7852l.2041-.0107h9Zm0 2h-9v2h9v-2ZM11 2c1.0356 0 1.887.7873 1.9893 1.7959l.0107.2041v2l-.0107.2041c-.1023 1.0087-.9536 1.7959-1.9893 1.7959h-7l-.2041-.0107c-.9415-.0955-1.6897-.8437-1.7852-1.7852l-.0107-.2041v-2l.0098-.2041c.0954-.9413.844-1.6893 1.7851-1.7852l.2051-.0107h7Zm0 2h-7v2h7v-2Z",
|
|
14941
14944
|
clipRule: "evenodd"
|
|
14942
14945
|
}
|
|
14943
14946
|
)
|
|
@@ -15001,8 +15004,7 @@ const IconToolbar = react.forwardRef(
|
|
|
15001
15004
|
fill: "currentColor",
|
|
15002
15005
|
d: "M18.5 10v4h3.5v-4h-3.5Zm-5.5 4h3.5v-4h-3.5v4Zm-5.5 0h3.5v-4h-3.5v4Zm-5.5 0h3.5v-4h-3.5v4Zm22 0c0 1.1046-.8954 2-2 2h-20c-1.1046 0-2-.8954-2-2v-4c0-1.1046.8954-2 2-2h20c1.1046 0 2 .8954 2 2v4Z"
|
|
15003
15006
|
}
|
|
15004
|
-
)
|
|
15005
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { stroke: "currentColor", strokeWidth: 2, d: "M12 12v.0001" })
|
|
15007
|
+
)
|
|
15006
15008
|
);
|
|
15007
15009
|
}
|
|
15008
15010
|
);
|
|
@@ -16320,7 +16322,6 @@ exports.IconAddLineBottom = IconAddLineBottom;
|
|
|
16320
16322
|
exports.IconAddLineRight = IconAddLineRight;
|
|
16321
16323
|
exports.IconAiText = IconAiText;
|
|
16322
16324
|
exports.IconAlignBottom = IconAlignBottom;
|
|
16323
|
-
exports.IconAlignBottom2 = IconAlignBottom2;
|
|
16324
16325
|
exports.IconAlignBottomGroup = IconAlignBottomGroup;
|
|
16325
16326
|
exports.IconAlignCenterHorizontal = IconAlignCenterHorizontal;
|
|
16326
16327
|
exports.IconAlignCenterVertical = IconAlignCenterVertical;
|
|
@@ -16385,8 +16386,10 @@ exports.IconBoard = IconBoard;
|
|
|
16385
16386
|
exports.IconBookOpenInfo = IconBookOpenInfo;
|
|
16386
16387
|
exports.IconBookmark = IconBookmark;
|
|
16387
16388
|
exports.IconBoxCaptions = IconBoxCaptions;
|
|
16389
|
+
exports.IconBracketClose = IconBracketClose;
|
|
16388
16390
|
exports.IconBracketCurlyLeft = IconBracketCurlyLeft;
|
|
16389
16391
|
exports.IconBracketCurlyRight = IconBracketCurlyRight;
|
|
16392
|
+
exports.IconBracketOpen = IconBracketOpen;
|
|
16390
16393
|
exports.IconBracketsAngleSlash = IconBracketsAngleSlash;
|
|
16391
16394
|
exports.IconBracketsCurlyCirclesThree = IconBracketsCurlyCirclesThree;
|
|
16392
16395
|
exports.IconBrowser = IconBrowser;
|
|
@@ -16489,6 +16492,7 @@ exports.IconDistributeHorizontal = IconDistributeHorizontal;
|
|
|
16489
16492
|
exports.IconDistributeVertical = IconDistributeVertical;
|
|
16490
16493
|
exports.IconDocFormat = IconDocFormat;
|
|
16491
16494
|
exports.IconDollarSignCurrency = IconDollarSignCurrency;
|
|
16495
|
+
exports.IconDotLineDot = IconDotLineDot;
|
|
16492
16496
|
exports.IconDotVoting = IconDotVoting;
|
|
16493
16497
|
exports.IconDotsNine = IconDotsNine;
|
|
16494
16498
|
exports.IconDotsSixHorizontal = IconDotsSixHorizontal;
|
|
@@ -16648,6 +16652,7 @@ exports.IconPlaybackSpeedCircle = IconPlaybackSpeedCircle;
|
|
|
16648
16652
|
exports.IconPlug = IconPlug;
|
|
16649
16653
|
exports.IconPlus = IconPlus;
|
|
16650
16654
|
exports.IconPlusBox = IconPlusBox;
|
|
16655
|
+
exports.IconPlusCross = IconPlusCross;
|
|
16651
16656
|
exports.IconPlusSquare = IconPlusSquare;
|
|
16652
16657
|
exports.IconPlusText = IconPlusText;
|
|
16653
16658
|
exports.IconPolling = IconPolling;
|