@webstudio-is/icons 0.182.0 → 0.189.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/lib/__generated__/svg.js +2 -0
- package/lib/index.js +161 -483
- package/lib/types/generate.d.ts +0 -1
- package/lib/types/src/__generated__/components.d.ts +200 -199
- package/lib/types/src/__generated__/svg.d.ts +1 -0
- package/lib/types/src/chevron-double-left.d.ts +2 -3
- package/lib/types/src/cross-circled-filled.d.ts +2 -3
- package/lib/types/src/cross-small.d.ts +2 -3
- package/lib/types/src/cross.d.ts +2 -3
- package/lib/types/src/gear.d.ts +3 -4
- package/lib/types/src/index.d.ts +0 -12
- package/lib/types/src/index.stories.d.ts +5 -17
- package/lib/types/src/magnifying-glass.d.ts +2 -3
- package/lib/types/src/new-folder.d.ts +2 -3
- package/lib/types/src/new-page.d.ts +2 -3
- package/lib/types/src/size.d.ts +2 -3
- package/lib/types/src/text-align-center.d.ts +2 -3
- package/lib/types/src/text-align-justify.d.ts +2 -3
- package/lib/types/src/text-align-right.d.ts +2 -3
- package/lib/types/src/text-capitalize.d.ts +2 -3
- package/lib/types/src/text-direction-ltr.d.ts +2 -3
- package/lib/types/src/text-direction-rtl.d.ts +2 -3
- package/lib/types/src/text-hyphen.d.ts +2 -3
- package/lib/types/src/text-lowercase.d.ts +2 -3
- package/lib/types/src/text-strikethrough.d.ts +2 -3
- package/lib/types/src/text-truncate.d.ts +2 -3
- package/lib/types/src/text-underline.d.ts +2 -3
- package/lib/types/src/text-uppercase.d.ts +2 -3
- package/lib/types/src/trash.d.ts +2 -3
- package/package.json +3 -3
- package/lib/types/src/chevron-double-down.d.ts +0 -3
- package/lib/types/src/chevron-double-right.d.ts +0 -3
- package/lib/types/src/chevron-double-up.d.ts +0 -3
- package/lib/types/src/cross-large.d.ts +0 -3
- package/lib/types/src/devices.d.ts +0 -3
- package/lib/types/src/justify-items-center.d.ts +0 -3
- package/lib/types/src/justify-items-end.d.ts +0 -3
- package/lib/types/src/justify-items-space-around.d.ts +0 -3
- package/lib/types/src/justify-items-space-between.d.ts +0 -3
- package/lib/types/src/justify-items-start.d.ts +0 -3
- package/lib/types/src/redo.d.ts +0 -3
- package/lib/types/src/twitter.d.ts +0 -2
- package/lib/types/src/undo.d.ts +0 -3
package/lib/index.js
CHANGED
|
@@ -4454,6 +4454,33 @@ var SelectIcon = forwardRef(
|
|
|
4454
4454
|
}
|
|
4455
4455
|
);
|
|
4456
4456
|
SelectIcon.displayName = "SelectIcon";
|
|
4457
|
+
var SettingsIcon = forwardRef(
|
|
4458
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
4459
|
+
return /* @__PURE__ */ jsx(
|
|
4460
|
+
"svg",
|
|
4461
|
+
{
|
|
4462
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4463
|
+
viewBox: "0 0 16 16",
|
|
4464
|
+
width: size,
|
|
4465
|
+
height: size,
|
|
4466
|
+
fill: color,
|
|
4467
|
+
...props,
|
|
4468
|
+
ref: forwardedRef,
|
|
4469
|
+
children: /* @__PURE__ */ jsx(
|
|
4470
|
+
"path",
|
|
4471
|
+
{
|
|
4472
|
+
stroke: "currentColor",
|
|
4473
|
+
strokeLinecap: "round",
|
|
4474
|
+
strokeLinejoin: "round",
|
|
4475
|
+
strokeWidth: "1.3",
|
|
4476
|
+
d: "M2 5.333h8m0 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0Zm-4 5.334h8m-8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"
|
|
4477
|
+
}
|
|
4478
|
+
)
|
|
4479
|
+
}
|
|
4480
|
+
);
|
|
4481
|
+
}
|
|
4482
|
+
);
|
|
4483
|
+
SettingsIcon.displayName = "SettingsIcon";
|
|
4457
4484
|
var ShadowInsetIcon = forwardRef(
|
|
4458
4485
|
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
4459
4486
|
return /* @__PURE__ */ jsx(
|
|
@@ -5832,233 +5859,12 @@ var ZAxisIcon = forwardRef(
|
|
|
5832
5859
|
);
|
|
5833
5860
|
ZAxisIcon.displayName = "ZAxisIcon";
|
|
5834
5861
|
|
|
5835
|
-
// src/undo.tsx
|
|
5836
|
-
import * as React from "react";
|
|
5837
|
-
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
5838
|
-
var UndoIcon = React.forwardRef(
|
|
5839
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
5840
|
-
return /* @__PURE__ */ jsxs2(
|
|
5841
|
-
"svg",
|
|
5842
|
-
{
|
|
5843
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5844
|
-
height: "15",
|
|
5845
|
-
width: "15",
|
|
5846
|
-
viewBox: "0 0 24 24",
|
|
5847
|
-
fill: color,
|
|
5848
|
-
...props,
|
|
5849
|
-
ref: forwardedRef,
|
|
5850
|
-
children: [
|
|
5851
|
-
/* @__PURE__ */ jsx2("path", { d: "M0 0h24v24H0z", fill: "none" }),
|
|
5852
|
-
/* @__PURE__ */ jsx2("path", { d: "M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z" })
|
|
5853
|
-
]
|
|
5854
|
-
}
|
|
5855
|
-
);
|
|
5856
|
-
}
|
|
5857
|
-
);
|
|
5858
|
-
UndoIcon.displayName = "UndoIcon";
|
|
5859
|
-
|
|
5860
|
-
// src/redo.tsx
|
|
5861
|
-
import * as React2 from "react";
|
|
5862
|
-
import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
5863
|
-
var RedoIcon = React2.forwardRef(
|
|
5864
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
5865
|
-
return /* @__PURE__ */ jsxs3(
|
|
5866
|
-
"svg",
|
|
5867
|
-
{
|
|
5868
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5869
|
-
height: "15",
|
|
5870
|
-
width: "15",
|
|
5871
|
-
viewBox: "0 0 24 24",
|
|
5872
|
-
fill: color,
|
|
5873
|
-
...props,
|
|
5874
|
-
ref: forwardedRef,
|
|
5875
|
-
children: [
|
|
5876
|
-
/* @__PURE__ */ jsx3("path", { d: "M0 0h24v24H0z", fill: "none" }),
|
|
5877
|
-
/* @__PURE__ */ jsx3("path", { d: "M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16c1.05-3.19 4.05-5.5 7.6-5.5 1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z" })
|
|
5878
|
-
]
|
|
5879
|
-
}
|
|
5880
|
-
);
|
|
5881
|
-
}
|
|
5882
|
-
);
|
|
5883
|
-
RedoIcon.displayName = "RedoIcon";
|
|
5884
|
-
|
|
5885
|
-
// src/devices.tsx
|
|
5886
|
-
import * as React3 from "react";
|
|
5887
|
-
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
5888
|
-
var DevicesIcon = React3.forwardRef(
|
|
5889
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
5890
|
-
return /* @__PURE__ */ jsx4(
|
|
5891
|
-
"svg",
|
|
5892
|
-
{
|
|
5893
|
-
width: "15",
|
|
5894
|
-
height: "15",
|
|
5895
|
-
viewBox: "0 0 24 24",
|
|
5896
|
-
fill: "none",
|
|
5897
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5898
|
-
...props,
|
|
5899
|
-
ref: forwardedRef,
|
|
5900
|
-
children: /* @__PURE__ */ jsx4(
|
|
5901
|
-
"path",
|
|
5902
|
-
{
|
|
5903
|
-
fill: color,
|
|
5904
|
-
d: "M22.265 9.51L17.265 9.5C16.715 9.5 16.265 9.95 16.265 10.5V19.5C16.265 20.05 16.715 20.5 17.265 20.5H22.265C22.815 20.5 23.265 20.05 23.265 19.5V10.5C23.265 9.95 22.815 9.51 22.265 9.51ZM22.265 19.5H17.265V10.5H19.5H22.265V19.5ZM20.265 1.5H2.26499C1.15499 1.5 0.264988 2.39 0.264988 3.5V15.5C0.264988 16.6 1.15499 17.5 2.26499 17.5H10.5V19.5H7.26499V20.5H15.265V19.5H12.5V17.5H15.265V16.5H1.26499V2.5H21.265V8.5H22.265V3.5C22.265 2.39 21.365 1.5 20.265 1.5Z"
|
|
5905
|
-
}
|
|
5906
|
-
)
|
|
5907
|
-
}
|
|
5908
|
-
);
|
|
5909
|
-
}
|
|
5910
|
-
);
|
|
5911
|
-
DevicesIcon.displayName = "DevicesIcon";
|
|
5912
|
-
|
|
5913
|
-
// src/justify-items-center.tsx
|
|
5914
|
-
import * as React4 from "react";
|
|
5915
|
-
import { jsx as jsx5 } from "react/jsx-runtime";
|
|
5916
|
-
var JustifyItemsCenterIcon = React4.forwardRef(({ color = "currentColor", ...props }, forwardedRef) => {
|
|
5917
|
-
return /* @__PURE__ */ jsx5(
|
|
5918
|
-
"svg",
|
|
5919
|
-
{
|
|
5920
|
-
width: "24",
|
|
5921
|
-
height: "24",
|
|
5922
|
-
viewBox: "0 0 24 24",
|
|
5923
|
-
fill: "none",
|
|
5924
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5925
|
-
...props,
|
|
5926
|
-
ref: forwardedRef,
|
|
5927
|
-
children: /* @__PURE__ */ jsx5(
|
|
5928
|
-
"path",
|
|
5929
|
-
{
|
|
5930
|
-
fillRule: "evenodd",
|
|
5931
|
-
clipRule: "evenodd",
|
|
5932
|
-
d: "M12.7999 4.79999V19.2H11.1999V4.79999H12.7999ZM16.5999 15.8H14.3999V8.19999H16.5999V15.8ZM7.3999 15.8H9.5999V8.19999H7.3999V15.8Z",
|
|
5933
|
-
fill: color
|
|
5934
|
-
}
|
|
5935
|
-
)
|
|
5936
|
-
}
|
|
5937
|
-
);
|
|
5938
|
-
});
|
|
5939
|
-
JustifyItemsCenterIcon.displayName = "JustifyItemsCenterIcon";
|
|
5940
|
-
|
|
5941
|
-
// src/justify-items-end.tsx
|
|
5942
|
-
import * as React5 from "react";
|
|
5943
|
-
import { jsx as jsx6, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
5944
|
-
var JustifyItemsEndIcon = React5.forwardRef(
|
|
5945
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
5946
|
-
return /* @__PURE__ */ jsxs4(
|
|
5947
|
-
"svg",
|
|
5948
|
-
{
|
|
5949
|
-
width: "24",
|
|
5950
|
-
height: "24",
|
|
5951
|
-
viewBox: "0 0 24 24",
|
|
5952
|
-
fill: "none",
|
|
5953
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5954
|
-
...props,
|
|
5955
|
-
ref: forwardedRef,
|
|
5956
|
-
children: [
|
|
5957
|
-
/* @__PURE__ */ jsx6(
|
|
5958
|
-
"path",
|
|
5959
|
-
{
|
|
5960
|
-
d: "M12 16.8H15.2V19.2H16.8V4.79999H15.2V7.19999H12V16.8Z",
|
|
5961
|
-
fill: color
|
|
5962
|
-
}
|
|
5963
|
-
),
|
|
5964
|
-
/* @__PURE__ */ jsx6("path", { d: "M7.19995 16.8H10.4V7.19999H7.19995V16.8Z", fill: color })
|
|
5965
|
-
]
|
|
5966
|
-
}
|
|
5967
|
-
);
|
|
5968
|
-
}
|
|
5969
|
-
);
|
|
5970
|
-
JustifyItemsEndIcon.displayName = "JustifyItemsEndIcon";
|
|
5971
|
-
|
|
5972
|
-
// src/justify-items-space-around.tsx
|
|
5973
|
-
import * as React6 from "react";
|
|
5974
|
-
import { jsx as jsx7, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
5975
|
-
var JustifyItemsSpaceAroundIcon = React6.forwardRef(({ color = "currentColor", ...props }, forwardedRef) => {
|
|
5976
|
-
return /* @__PURE__ */ jsxs5(
|
|
5977
|
-
"svg",
|
|
5978
|
-
{
|
|
5979
|
-
width: "24",
|
|
5980
|
-
height: "24",
|
|
5981
|
-
viewBox: "0 0 24 24",
|
|
5982
|
-
fill: "none",
|
|
5983
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
5984
|
-
...props,
|
|
5985
|
-
ref: forwardedRef,
|
|
5986
|
-
children: [
|
|
5987
|
-
/* @__PURE__ */ jsx7("path", { d: "M7.9999 19.2V4.79999H6.3999V19.2H7.9999Z", fill: color }),
|
|
5988
|
-
/* @__PURE__ */ jsx7("path", { d: "M17.5999 19.2V4.79999H15.9999V19.2H17.5999Z", fill: color }),
|
|
5989
|
-
/* @__PURE__ */ jsx7("path", { d: "M15.1999 16.8H12.7999V7.19999H15.1999V16.8Z", fill: color }),
|
|
5990
|
-
/* @__PURE__ */ jsx7("path", { d: "M8.7999 16.8H11.1999V7.19999H8.7999V16.8Z", fill: color })
|
|
5991
|
-
]
|
|
5992
|
-
}
|
|
5993
|
-
);
|
|
5994
|
-
});
|
|
5995
|
-
JustifyItemsSpaceAroundIcon.displayName = "JustifyItemsSpaceAroundIcon";
|
|
5996
|
-
|
|
5997
|
-
// src/justify-items-space-between.tsx
|
|
5998
|
-
import * as React7 from "react";
|
|
5999
|
-
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
6000
|
-
var JustifyItemsSpaceBetweenIcon = React7.forwardRef(({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6001
|
-
return /* @__PURE__ */ jsx8(
|
|
6002
|
-
"svg",
|
|
6003
|
-
{
|
|
6004
|
-
width: "24",
|
|
6005
|
-
height: "24",
|
|
6006
|
-
viewBox: "0 0 24 24",
|
|
6007
|
-
fill: "none",
|
|
6008
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6009
|
-
...props,
|
|
6010
|
-
ref: forwardedRef,
|
|
6011
|
-
children: /* @__PURE__ */ jsx8(
|
|
6012
|
-
"path",
|
|
6013
|
-
{
|
|
6014
|
-
fillRule: "evenodd",
|
|
6015
|
-
clipRule: "evenodd",
|
|
6016
|
-
d: "M11.1999 7.19999H7.9999V4.79999H6.3999V19.2H7.9999V16.8H11.1999V7.19999ZM12.7999 16.8H15.9999V19.2H17.5999V4.79999H15.9999V7.19999H12.7999V16.8Z",
|
|
6017
|
-
fill: color
|
|
6018
|
-
}
|
|
6019
|
-
)
|
|
6020
|
-
}
|
|
6021
|
-
);
|
|
6022
|
-
});
|
|
6023
|
-
JustifyItemsSpaceBetweenIcon.displayName = "JustifyItemsSpaceBetweenIcon";
|
|
6024
|
-
|
|
6025
|
-
// src/justify-items-start.tsx
|
|
6026
|
-
import * as React8 from "react";
|
|
6027
|
-
import { jsx as jsx9, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
6028
|
-
var JustifyItemsStartIcon = React8.forwardRef(
|
|
6029
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6030
|
-
return /* @__PURE__ */ jsxs6(
|
|
6031
|
-
"svg",
|
|
6032
|
-
{
|
|
6033
|
-
width: "24",
|
|
6034
|
-
height: "24",
|
|
6035
|
-
viewBox: "0 0 24 24",
|
|
6036
|
-
fill: "none",
|
|
6037
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6038
|
-
...props,
|
|
6039
|
-
ref: forwardedRef,
|
|
6040
|
-
children: [
|
|
6041
|
-
/* @__PURE__ */ jsx9(
|
|
6042
|
-
"path",
|
|
6043
|
-
{
|
|
6044
|
-
d: "M10.9999 7.19999H8.79995V4.79999H7.19995V19.2H8.79995V16.8H10.9999V7.19999Z",
|
|
6045
|
-
fill: color
|
|
6046
|
-
}
|
|
6047
|
-
),
|
|
6048
|
-
/* @__PURE__ */ jsx9("path", { d: "M16.8 7.19999H13.6V16.8H16.8V7.19999Z", fill: color })
|
|
6049
|
-
]
|
|
6050
|
-
}
|
|
6051
|
-
);
|
|
6052
|
-
}
|
|
6053
|
-
);
|
|
6054
|
-
JustifyItemsStartIcon.displayName = "JustifyItemsStartIcon";
|
|
6055
|
-
|
|
6056
5862
|
// src/trash.tsx
|
|
6057
|
-
import * as
|
|
6058
|
-
import { jsx as
|
|
6059
|
-
var TrashIcon =
|
|
5863
|
+
import * as React from "react";
|
|
5864
|
+
import { jsx as jsx2 } from "react/jsx-runtime";
|
|
5865
|
+
var TrashIcon = React.forwardRef(
|
|
6060
5866
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6061
|
-
return /* @__PURE__ */
|
|
5867
|
+
return /* @__PURE__ */ jsx2(
|
|
6062
5868
|
"svg",
|
|
6063
5869
|
{
|
|
6064
5870
|
width: "16",
|
|
@@ -6068,7 +5874,7 @@ var TrashIcon = React9.forwardRef(
|
|
|
6068
5874
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6069
5875
|
...props,
|
|
6070
5876
|
ref: forwardedRef,
|
|
6071
|
-
children: /* @__PURE__ */
|
|
5877
|
+
children: /* @__PURE__ */ jsx2(
|
|
6072
5878
|
"path",
|
|
6073
5879
|
{
|
|
6074
5880
|
d: "M12.2127 4.9909L11.6908 12.2986C11.6692 12.6023 11.5333 12.8865 11.3105 13.094C11.0878 13.3015 10.7946 13.4168 10.4902 13.4168H5.50923C5.20477 13.4168 4.91163 13.3015 4.68883 13.094C4.46604 12.8865 4.33015 12.6023 4.30853 12.2986L3.78673 4.9909M12.2127 4.9909H9.80525M12.2127 4.9909H12.8145M3.78673 4.9909H6.19413M3.78673 4.9909H3.18488M6.19413 4.9909H9.80525M6.19413 4.9909V3.18535C6.19413 3.02573 6.25754 2.87264 6.37041 2.75977C6.48328 2.64691 6.63637 2.5835 6.79599 2.5835H9.20339C9.36302 2.5835 9.5161 2.64691 9.62897 2.75977C9.74184 2.87264 9.80525 3.02573 9.80525 3.18535V4.9909M6.79604 7.35518V10.9663M9.20345 7.35518V10.9663",
|
|
@@ -6085,11 +5891,11 @@ var TrashIcon = React9.forwardRef(
|
|
|
6085
5891
|
TrashIcon.displayName = "TrashIcon";
|
|
6086
5892
|
|
|
6087
5893
|
// src/size.tsx
|
|
6088
|
-
import * as
|
|
6089
|
-
import { jsx as
|
|
6090
|
-
var SizeIcon =
|
|
5894
|
+
import * as React2 from "react";
|
|
5895
|
+
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
5896
|
+
var SizeIcon = React2.forwardRef(
|
|
6091
5897
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6092
|
-
return /* @__PURE__ */
|
|
5898
|
+
return /* @__PURE__ */ jsx3(
|
|
6093
5899
|
"svg",
|
|
6094
5900
|
{
|
|
6095
5901
|
width: 16,
|
|
@@ -6099,7 +5905,7 @@ var SizeIcon = React10.forwardRef(
|
|
|
6099
5905
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6100
5906
|
...props,
|
|
6101
5907
|
ref: forwardedRef,
|
|
6102
|
-
children: /* @__PURE__ */
|
|
5908
|
+
children: /* @__PURE__ */ jsx3(
|
|
6103
5909
|
"path",
|
|
6104
5910
|
{
|
|
6105
5911
|
fillRule: "evenodd",
|
|
@@ -6115,15 +5921,17 @@ var SizeIcon = React10.forwardRef(
|
|
|
6115
5921
|
SizeIcon.displayName = "SizeIcon";
|
|
6116
5922
|
|
|
6117
5923
|
// src/gear.tsx
|
|
6118
|
-
import * as
|
|
6119
|
-
import { jsx as
|
|
5924
|
+
import * as React3 from "react";
|
|
5925
|
+
import { jsx as jsx4, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
6120
5926
|
var fillVar = "--ws-gear-icon-fill";
|
|
6121
|
-
var gearIconCssVars = ({
|
|
5927
|
+
var gearIconCssVars = ({
|
|
5928
|
+
fill
|
|
5929
|
+
}) => ({
|
|
6122
5930
|
[fillVar]: fill
|
|
6123
5931
|
});
|
|
6124
|
-
var GearIcon =
|
|
5932
|
+
var GearIcon = React3.forwardRef(
|
|
6125
5933
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6126
|
-
return /* @__PURE__ */
|
|
5934
|
+
return /* @__PURE__ */ jsxs2(
|
|
6127
5935
|
"svg",
|
|
6128
5936
|
{
|
|
6129
5937
|
width: 16,
|
|
@@ -6134,7 +5942,7 @@ var GearIcon = React11.forwardRef(
|
|
|
6134
5942
|
...props,
|
|
6135
5943
|
ref: forwardedRef,
|
|
6136
5944
|
children: [
|
|
6137
|
-
/* @__PURE__ */
|
|
5945
|
+
/* @__PURE__ */ jsx4(
|
|
6138
5946
|
"path",
|
|
6139
5947
|
{
|
|
6140
5948
|
d: "M9.117 2.878c-.284-1.17-1.95-1.17-2.234 0a1.149 1.149 0 01-1.714.71c-1.03-.627-2.207.551-1.58 1.58a1.15 1.15 0 01-.711 1.715c-1.17.284-1.17 1.95 0 2.234a1.15 1.15 0 01.71 1.714c-.627 1.03.551 2.207 1.58 1.58a1.148 1.148 0 011.715.711c.284 1.17 1.95 1.17 2.234 0a1.15 1.15 0 011.714-.71c1.03.627 2.207-.551 1.58-1.58a1.148 1.148 0 01.711-1.715c1.17-.284 1.17-1.95 0-2.234a1.15 1.15 0 01-.71-1.714c.627-1.03-.551-2.207-1.58-1.58a1.15 1.15 0 01-1.715-.711z",
|
|
@@ -6145,7 +5953,7 @@ var GearIcon = React11.forwardRef(
|
|
|
6145
5953
|
style: { fill: `var(${fillVar}, "none")` }
|
|
6146
5954
|
}
|
|
6147
5955
|
),
|
|
6148
|
-
/* @__PURE__ */
|
|
5956
|
+
/* @__PURE__ */ jsx4(
|
|
6149
5957
|
"circle",
|
|
6150
5958
|
{
|
|
6151
5959
|
cx: 8,
|
|
@@ -6163,11 +5971,11 @@ var GearIcon = React11.forwardRef(
|
|
|
6163
5971
|
GearIcon.displayName = "GearIcon";
|
|
6164
5972
|
|
|
6165
5973
|
// src/new-page.tsx
|
|
6166
|
-
import * as
|
|
6167
|
-
import { jsx as
|
|
6168
|
-
var NewPageIcon =
|
|
5974
|
+
import * as React4 from "react";
|
|
5975
|
+
import { jsx as jsx5 } from "react/jsx-runtime";
|
|
5976
|
+
var NewPageIcon = React4.forwardRef(
|
|
6169
5977
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6170
|
-
return /* @__PURE__ */
|
|
5978
|
+
return /* @__PURE__ */ jsx5(
|
|
6171
5979
|
"svg",
|
|
6172
5980
|
{
|
|
6173
5981
|
width: "16",
|
|
@@ -6177,7 +5985,7 @@ var NewPageIcon = React12.forwardRef(
|
|
|
6177
5985
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6178
5986
|
...props,
|
|
6179
5987
|
ref: forwardedRef,
|
|
6180
|
-
children: /* @__PURE__ */
|
|
5988
|
+
children: /* @__PURE__ */ jsx5(
|
|
6181
5989
|
"path",
|
|
6182
5990
|
{
|
|
6183
5991
|
d: "M9.19995 2.16172V4.64004C9.19995 4.97607 9.19995 5.14409 9.26535 5.27244C9.32287 5.38533 9.41466 5.47712 9.52756 5.53465C9.6559 5.60004 9.82392 5.60004 10.16 5.60004H12.6383M7.99995 11.6V8M6.19995 9.8H9.79995M9.19995 2H6.07995C5.07186 2 4.56781 2 4.18277 2.19619C3.84408 2.36876 3.56871 2.64413 3.39614 2.98282C3.19995 3.36786 3.19995 3.87191 3.19995 4.88V11.12C3.19995 12.1281 3.19995 12.6321 3.39614 13.0172C3.56871 13.3559 3.84408 13.6312 4.18277 13.8038C4.56781 14 5.07186 14 6.07995 14H9.91995C10.928 14 11.4321 14 11.8171 13.8038C12.1558 13.6312 12.4312 13.3559 12.6038 13.0172C12.8 12.6321 12.8 12.1281 12.8 11.12V5.6L9.19995 2Z",
|
|
@@ -6194,11 +6002,11 @@ var NewPageIcon = React12.forwardRef(
|
|
|
6194
6002
|
NewPageIcon.displayName = "NewPageIcon";
|
|
6195
6003
|
|
|
6196
6004
|
// src/new-folder.tsx
|
|
6197
|
-
import * as
|
|
6198
|
-
import { jsx as
|
|
6199
|
-
var NewFolderIcon =
|
|
6005
|
+
import * as React5 from "react";
|
|
6006
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
6007
|
+
var NewFolderIcon = React5.forwardRef(
|
|
6200
6008
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6201
|
-
return /* @__PURE__ */
|
|
6009
|
+
return /* @__PURE__ */ jsx6(
|
|
6202
6010
|
"svg",
|
|
6203
6011
|
{
|
|
6204
6012
|
width: "16",
|
|
@@ -6208,7 +6016,7 @@ var NewFolderIcon = React13.forwardRef(
|
|
|
6208
6016
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6209
6017
|
...props,
|
|
6210
6018
|
ref: forwardedRef,
|
|
6211
|
-
children: /* @__PURE__ */
|
|
6019
|
+
children: /* @__PURE__ */ jsx6(
|
|
6212
6020
|
"path",
|
|
6213
6021
|
{
|
|
6214
6022
|
d: "M8.6 5L7.93068 3.66135C7.73804 3.27608 7.64172 3.08344 7.49802 2.9427C7.37095 2.81824 7.21779 2.72358 7.04965 2.66558C6.8595 2.6 6.64412 2.6 6.21337 2.6H3.92C3.24794 2.6 2.91191 2.6 2.65521 2.73079C2.42942 2.84584 2.24584 3.02942 2.13079 3.25521C2 3.5119 2 3.84794 2 4.52V5M2 5H11.12C12.1281 5 12.6321 5 13.0172 5.19619C13.3559 5.36876 13.6312 5.64412 13.8038 5.98282C14 6.36786 14 6.8719 14 7.88V10.52C14 11.5281 14 12.0321 13.8038 12.4172C13.6312 12.7559 13.3559 13.0312 13.0172 13.2038C12.6321 13.4 12.1281 13.4 11.12 13.4H4.88C3.87191 13.4 3.36786 13.4 2.98282 13.2038C2.64413 13.0312 2.36876 12.7559 2.19619 12.4172C2 12.0321 2 11.5281 2 10.52V5ZM8 11V7.4M6.2 9.2H9.8",
|
|
@@ -6224,43 +6032,12 @@ var NewFolderIcon = React13.forwardRef(
|
|
|
6224
6032
|
);
|
|
6225
6033
|
NewFolderIcon.displayName = "NewFolderIcon";
|
|
6226
6034
|
|
|
6227
|
-
// src/chevron-double-
|
|
6228
|
-
import * as
|
|
6229
|
-
import { jsx as
|
|
6230
|
-
var
|
|
6231
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6232
|
-
return /* @__PURE__ */ jsx15(
|
|
6233
|
-
"svg",
|
|
6234
|
-
{
|
|
6235
|
-
width: "16",
|
|
6236
|
-
height: "16",
|
|
6237
|
-
viewBox: "0 0 16 16",
|
|
6238
|
-
fill: "none",
|
|
6239
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6240
|
-
...props,
|
|
6241
|
-
ref: forwardedRef,
|
|
6242
|
-
children: /* @__PURE__ */ jsx15(
|
|
6243
|
-
"path",
|
|
6244
|
-
{
|
|
6245
|
-
d: "M3 14L8 9L13 14M3 7L8 2L13 7",
|
|
6246
|
-
stroke: color,
|
|
6247
|
-
strokeWidth: "1.3",
|
|
6248
|
-
strokeLinecap: "round",
|
|
6249
|
-
strokeLinejoin: "round"
|
|
6250
|
-
}
|
|
6251
|
-
)
|
|
6252
|
-
}
|
|
6253
|
-
);
|
|
6254
|
-
}
|
|
6255
|
-
);
|
|
6256
|
-
ChevronDoubleUpIcon.displayName = "ChevronDoubleUpIcon";
|
|
6257
|
-
|
|
6258
|
-
// src/chevron-double-down.tsx
|
|
6259
|
-
import * as React15 from "react";
|
|
6260
|
-
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
6261
|
-
var ChevronDoubleDownIcon = React15.forwardRef(
|
|
6035
|
+
// src/chevron-double-left.tsx
|
|
6036
|
+
import * as React6 from "react";
|
|
6037
|
+
import { jsx as jsx7 } from "react/jsx-runtime";
|
|
6038
|
+
var ChevronDoubleLeftIcon = React6.forwardRef(
|
|
6262
6039
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6263
|
-
return /* @__PURE__ */
|
|
6040
|
+
return /* @__PURE__ */ jsx7(
|
|
6264
6041
|
"svg",
|
|
6265
6042
|
{
|
|
6266
6043
|
width: "16",
|
|
@@ -6270,10 +6047,10 @@ var ChevronDoubleDownIcon = React15.forwardRef(
|
|
|
6270
6047
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6271
6048
|
...props,
|
|
6272
6049
|
ref: forwardedRef,
|
|
6273
|
-
children: /* @__PURE__ */
|
|
6050
|
+
children: /* @__PURE__ */ jsx7(
|
|
6274
6051
|
"path",
|
|
6275
6052
|
{
|
|
6276
|
-
d: "
|
|
6053
|
+
d: "M14 13L9 8L14 3M7 13L2 8L7 3",
|
|
6277
6054
|
stroke: color,
|
|
6278
6055
|
strokeWidth: "1.3",
|
|
6279
6056
|
strokeLinecap: "round",
|
|
@@ -6284,14 +6061,14 @@ var ChevronDoubleDownIcon = React15.forwardRef(
|
|
|
6284
6061
|
);
|
|
6285
6062
|
}
|
|
6286
6063
|
);
|
|
6287
|
-
|
|
6064
|
+
ChevronDoubleLeftIcon.displayName = "ChevronDoubleLeftIcon";
|
|
6288
6065
|
|
|
6289
|
-
// src/
|
|
6290
|
-
import * as
|
|
6291
|
-
import { jsx as
|
|
6292
|
-
var
|
|
6066
|
+
// src/cross-circled-filled.tsx
|
|
6067
|
+
import * as React7 from "react";
|
|
6068
|
+
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
6069
|
+
var CrossCircledFilledIcon = React7.forwardRef(
|
|
6293
6070
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6294
|
-
return /* @__PURE__ */
|
|
6071
|
+
return /* @__PURE__ */ jsx8(
|
|
6295
6072
|
"svg",
|
|
6296
6073
|
{
|
|
6297
6074
|
width: "16",
|
|
@@ -6301,85 +6078,27 @@ var ChevronDoubleLeftIcon = React16.forwardRef(
|
|
|
6301
6078
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6302
6079
|
...props,
|
|
6303
6080
|
ref: forwardedRef,
|
|
6304
|
-
children: /* @__PURE__ */
|
|
6081
|
+
children: /* @__PURE__ */ jsx8(
|
|
6305
6082
|
"path",
|
|
6306
6083
|
{
|
|
6307
|
-
|
|
6308
|
-
|
|
6309
|
-
|
|
6310
|
-
|
|
6311
|
-
strokeLinejoin: "round"
|
|
6084
|
+
fillRule: "evenodd",
|
|
6085
|
+
clipRule: "evenodd",
|
|
6086
|
+
d: "M14 8C14 8.78793 13.8448 9.56815 13.5433 10.2961C13.2417 11.0241 12.7998 11.6855 12.2426 12.2426C11.6855 12.7998 11.0241 13.2417 10.2961 13.5433C9.56815 13.8448 8.78793 14 8 14C7.21207 14 6.43185 13.8448 5.7039 13.5433C4.97595 13.2417 4.31451 12.7998 3.75736 12.2426C3.20021 11.6855 2.75825 11.0241 2.45672 10.2961C2.15519 9.56815 2 8.78793 2 8C2 6.4087 2.63214 4.88258 3.75736 3.75736C4.88258 2.63214 6.4087 2 8 2C9.5913 2 11.1174 2.63214 12.2426 3.75736C13.3679 4.88258 14 6.4087 14 8ZM6.42426 5.57574C6.18995 5.34142 5.81005 5.34142 5.57574 5.57574C5.34142 5.81005 5.34142 6.18995 5.57574 6.42426L7.15147 8L5.57574 9.57574C5.34142 9.81005 5.34142 10.1899 5.57574 10.4243C5.81005 10.6586 6.18995 10.6586 6.42426 10.4243L8 8.84853L9.57574 10.4243C9.81005 10.6586 10.1899 10.6586 10.4243 10.4243C10.6586 10.1899 10.6586 9.81005 10.4243 9.57574L8.84853 8L10.4243 6.42426C10.6586 6.18995 10.6586 5.81005 10.4243 5.57574C10.1899 5.34142 9.81005 5.34142 9.57574 5.57574L8 7.15147L6.42426 5.57574Z",
|
|
6087
|
+
fill: color
|
|
6312
6088
|
}
|
|
6313
6089
|
)
|
|
6314
6090
|
}
|
|
6315
6091
|
);
|
|
6316
6092
|
}
|
|
6317
6093
|
);
|
|
6318
|
-
ChevronDoubleLeftIcon.displayName = "ChevronDoubleLeftIcon";
|
|
6319
|
-
|
|
6320
|
-
// src/chevron-double-right.tsx
|
|
6321
|
-
import * as React17 from "react";
|
|
6322
|
-
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
6323
|
-
var ChevronDoubleRightIcon = React17.forwardRef(({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6324
|
-
return /* @__PURE__ */ jsx18(
|
|
6325
|
-
"svg",
|
|
6326
|
-
{
|
|
6327
|
-
width: "16",
|
|
6328
|
-
height: "16",
|
|
6329
|
-
viewBox: "0 0 16 16",
|
|
6330
|
-
fill: "none",
|
|
6331
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6332
|
-
...props,
|
|
6333
|
-
ref: forwardedRef,
|
|
6334
|
-
children: /* @__PURE__ */ jsx18(
|
|
6335
|
-
"path",
|
|
6336
|
-
{
|
|
6337
|
-
d: "M2 3L7 8L2 13M9 3L14 8L9 13",
|
|
6338
|
-
stroke: color,
|
|
6339
|
-
strokeWidth: "1.3",
|
|
6340
|
-
strokeLinecap: "round",
|
|
6341
|
-
strokeLinejoin: "round"
|
|
6342
|
-
}
|
|
6343
|
-
)
|
|
6344
|
-
}
|
|
6345
|
-
);
|
|
6346
|
-
});
|
|
6347
|
-
ChevronDoubleRightIcon.displayName = "ChevronDoubleRightIcon";
|
|
6348
|
-
|
|
6349
|
-
// src/cross-circled-filled.tsx
|
|
6350
|
-
import * as React18 from "react";
|
|
6351
|
-
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
6352
|
-
var CrossCircledFilledIcon = React18.forwardRef(({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6353
|
-
return /* @__PURE__ */ jsx19(
|
|
6354
|
-
"svg",
|
|
6355
|
-
{
|
|
6356
|
-
width: "16",
|
|
6357
|
-
height: "16",
|
|
6358
|
-
viewBox: "0 0 16 16",
|
|
6359
|
-
fill: "none",
|
|
6360
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6361
|
-
...props,
|
|
6362
|
-
ref: forwardedRef,
|
|
6363
|
-
children: /* @__PURE__ */ jsx19(
|
|
6364
|
-
"path",
|
|
6365
|
-
{
|
|
6366
|
-
fillRule: "evenodd",
|
|
6367
|
-
clipRule: "evenodd",
|
|
6368
|
-
d: "M14 8C14 8.78793 13.8448 9.56815 13.5433 10.2961C13.2417 11.0241 12.7998 11.6855 12.2426 12.2426C11.6855 12.7998 11.0241 13.2417 10.2961 13.5433C9.56815 13.8448 8.78793 14 8 14C7.21207 14 6.43185 13.8448 5.7039 13.5433C4.97595 13.2417 4.31451 12.7998 3.75736 12.2426C3.20021 11.6855 2.75825 11.0241 2.45672 10.2961C2.15519 9.56815 2 8.78793 2 8C2 6.4087 2.63214 4.88258 3.75736 3.75736C4.88258 2.63214 6.4087 2 8 2C9.5913 2 11.1174 2.63214 12.2426 3.75736C13.3679 4.88258 14 6.4087 14 8ZM6.42426 5.57574C6.18995 5.34142 5.81005 5.34142 5.57574 5.57574C5.34142 5.81005 5.34142 6.18995 5.57574 6.42426L7.15147 8L5.57574 9.57574C5.34142 9.81005 5.34142 10.1899 5.57574 10.4243C5.81005 10.6586 6.18995 10.6586 6.42426 10.4243L8 8.84853L9.57574 10.4243C9.81005 10.6586 10.1899 10.6586 10.4243 10.4243C10.6586 10.1899 10.6586 9.81005 10.4243 9.57574L8.84853 8L10.4243 6.42426C10.6586 6.18995 10.6586 5.81005 10.4243 5.57574C10.1899 5.34142 9.81005 5.34142 9.57574 5.57574L8 7.15147L6.42426 5.57574Z",
|
|
6369
|
-
fill: color
|
|
6370
|
-
}
|
|
6371
|
-
)
|
|
6372
|
-
}
|
|
6373
|
-
);
|
|
6374
|
-
});
|
|
6375
6094
|
CrossCircledFilledIcon.displayName = "CrossCircledFilled";
|
|
6376
6095
|
|
|
6377
6096
|
// src/cross.tsx
|
|
6378
|
-
import * as
|
|
6379
|
-
import { jsx as
|
|
6380
|
-
var CrossIcon =
|
|
6097
|
+
import * as React8 from "react";
|
|
6098
|
+
import { jsx as jsx9 } from "react/jsx-runtime";
|
|
6099
|
+
var CrossIcon = React8.forwardRef(
|
|
6381
6100
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6382
|
-
return /* @__PURE__ */
|
|
6101
|
+
return /* @__PURE__ */ jsx9(
|
|
6383
6102
|
"svg",
|
|
6384
6103
|
{
|
|
6385
6104
|
width: "16",
|
|
@@ -6389,7 +6108,7 @@ var CrossIcon = React19.forwardRef(
|
|
|
6389
6108
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6390
6109
|
...props,
|
|
6391
6110
|
ref: forwardedRef,
|
|
6392
|
-
children: /* @__PURE__ */
|
|
6111
|
+
children: /* @__PURE__ */ jsx9(
|
|
6393
6112
|
"path",
|
|
6394
6113
|
{
|
|
6395
6114
|
d: "M13 3L7.99998 8.00002M7.99998 8.00002L3 13M7.99998 8.00002L3 3.00008M7.99998 8.00002L13 13",
|
|
@@ -6405,11 +6124,11 @@ var CrossIcon = React19.forwardRef(
|
|
|
6405
6124
|
CrossIcon.displayName = "Cross";
|
|
6406
6125
|
|
|
6407
6126
|
// src/magnifying-glass.tsx
|
|
6408
|
-
import * as
|
|
6409
|
-
import { jsx as
|
|
6410
|
-
var MagnifyingGlassIcon =
|
|
6127
|
+
import * as React9 from "react";
|
|
6128
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
6129
|
+
var MagnifyingGlassIcon = React9.forwardRef(
|
|
6411
6130
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6412
|
-
return /* @__PURE__ */
|
|
6131
|
+
return /* @__PURE__ */ jsx10(
|
|
6413
6132
|
"svg",
|
|
6414
6133
|
{
|
|
6415
6134
|
width: "16",
|
|
@@ -6419,7 +6138,7 @@ var MagnifyingGlassIcon = React20.forwardRef(
|
|
|
6419
6138
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6420
6139
|
...props,
|
|
6421
6140
|
ref: forwardedRef,
|
|
6422
|
-
children: /* @__PURE__ */
|
|
6141
|
+
children: /* @__PURE__ */ jsx10(
|
|
6423
6142
|
"path",
|
|
6424
6143
|
{
|
|
6425
6144
|
fillRule: "evenodd",
|
|
@@ -6435,11 +6154,11 @@ var MagnifyingGlassIcon = React20.forwardRef(
|
|
|
6435
6154
|
MagnifyingGlassIcon.displayName = "MagnifyingGlass";
|
|
6436
6155
|
|
|
6437
6156
|
// src/cross-small.tsx
|
|
6438
|
-
import * as
|
|
6439
|
-
import { jsx as
|
|
6440
|
-
var CrossSmallIcon =
|
|
6157
|
+
import * as React10 from "react";
|
|
6158
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
6159
|
+
var CrossSmallIcon = React10.forwardRef(
|
|
6441
6160
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6442
|
-
return /* @__PURE__ */
|
|
6161
|
+
return /* @__PURE__ */ jsx11(
|
|
6443
6162
|
"svg",
|
|
6444
6163
|
{
|
|
6445
6164
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -6449,7 +6168,7 @@ var CrossSmallIcon = React21.forwardRef(
|
|
|
6449
6168
|
height: "16",
|
|
6450
6169
|
...props,
|
|
6451
6170
|
ref: forwardedRef,
|
|
6452
|
-
children: /* @__PURE__ */
|
|
6171
|
+
children: /* @__PURE__ */ jsx11(
|
|
6453
6172
|
"path",
|
|
6454
6173
|
{
|
|
6455
6174
|
stroke: color,
|
|
@@ -6464,42 +6183,12 @@ var CrossSmallIcon = React21.forwardRef(
|
|
|
6464
6183
|
);
|
|
6465
6184
|
CrossSmallIcon.displayName = "CrossSmallIcon";
|
|
6466
6185
|
|
|
6467
|
-
// src/cross-large.tsx
|
|
6468
|
-
import * as React22 from "react";
|
|
6469
|
-
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
6470
|
-
var CrossLargeIcon = React22.forwardRef(
|
|
6471
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6472
|
-
return /* @__PURE__ */ jsx23(
|
|
6473
|
-
"svg",
|
|
6474
|
-
{
|
|
6475
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6476
|
-
fill: "none",
|
|
6477
|
-
viewBox: "0 0 16 16",
|
|
6478
|
-
width: "16",
|
|
6479
|
-
height: "16",
|
|
6480
|
-
...props,
|
|
6481
|
-
ref: forwardedRef,
|
|
6482
|
-
children: /* @__PURE__ */ jsx23(
|
|
6483
|
-
"path",
|
|
6484
|
-
{
|
|
6485
|
-
stroke: color,
|
|
6486
|
-
strokeLinecap: "round",
|
|
6487
|
-
strokeWidth: "1.6",
|
|
6488
|
-
d: "M13 3 7.99998 8.00002m0 0L3 13m4.99998-4.99998L3 3.00008m4.99998 4.99994L13 13"
|
|
6489
|
-
}
|
|
6490
|
-
)
|
|
6491
|
-
}
|
|
6492
|
-
);
|
|
6493
|
-
}
|
|
6494
|
-
);
|
|
6495
|
-
CrossLargeIcon.displayName = "CrossLargeIcon";
|
|
6496
|
-
|
|
6497
6186
|
// src/text-align-center.tsx
|
|
6498
|
-
import * as
|
|
6499
|
-
import { jsx as
|
|
6500
|
-
var TextAlignCenterIcon =
|
|
6187
|
+
import * as React11 from "react";
|
|
6188
|
+
import { jsx as jsx12, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
6189
|
+
var TextAlignCenterIcon = React11.forwardRef(
|
|
6501
6190
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6502
|
-
return /* @__PURE__ */
|
|
6191
|
+
return /* @__PURE__ */ jsxs3(
|
|
6503
6192
|
"svg",
|
|
6504
6193
|
{
|
|
6505
6194
|
width: "16",
|
|
@@ -6510,21 +6199,21 @@ var TextAlignCenterIcon = React23.forwardRef(
|
|
|
6510
6199
|
...props,
|
|
6511
6200
|
ref: forwardedRef,
|
|
6512
6201
|
children: [
|
|
6513
|
-
/* @__PURE__ */
|
|
6202
|
+
/* @__PURE__ */ jsx12(
|
|
6514
6203
|
"path",
|
|
6515
6204
|
{
|
|
6516
6205
|
d: "M1 4C1 3.65482 1.27982 3.375 1.625 3.375H14.375C14.7202 3.375 15 3.65482 15 4C15 4.34518 14.7202 4.625 14.375 4.625H1.625C1.27982 4.625 1 4.34518 1 4Z",
|
|
6517
6206
|
fill: color
|
|
6518
6207
|
}
|
|
6519
6208
|
),
|
|
6520
|
-
/* @__PURE__ */
|
|
6209
|
+
/* @__PURE__ */ jsx12(
|
|
6521
6210
|
"path",
|
|
6522
6211
|
{
|
|
6523
6212
|
d: "M4 8C4 7.65482 4.27982 7.375 4.625 7.375H11.375C11.7202 7.375 12 7.65482 12 8C12 8.34518 11.7202 8.625 11.375 8.625H4.625C4.27982 8.625 4 8.34518 4 8Z",
|
|
6524
6213
|
fill: color
|
|
6525
6214
|
}
|
|
6526
6215
|
),
|
|
6527
|
-
/* @__PURE__ */
|
|
6216
|
+
/* @__PURE__ */ jsx12(
|
|
6528
6217
|
"path",
|
|
6529
6218
|
{
|
|
6530
6219
|
d: "M3 12C3 11.6548 3.27982 11.375 3.625 11.375H12.375C12.7202 11.375 13 11.6548 13 12C13 12.3452 12.7202 12.625 12.375 12.625H3.625C3.27982 12.625 3 12.3452 3 12Z",
|
|
@@ -6539,11 +6228,11 @@ var TextAlignCenterIcon = React23.forwardRef(
|
|
|
6539
6228
|
TextAlignCenterIcon.displayName = "TextAlignCenterIcon";
|
|
6540
6229
|
|
|
6541
6230
|
// src/text-align-justify.tsx
|
|
6542
|
-
import * as
|
|
6543
|
-
import { jsx as
|
|
6544
|
-
var TextAlignJustifyIcon =
|
|
6231
|
+
import * as React12 from "react";
|
|
6232
|
+
import { jsx as jsx13, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
6233
|
+
var TextAlignJustifyIcon = React12.forwardRef(
|
|
6545
6234
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6546
|
-
return /* @__PURE__ */
|
|
6235
|
+
return /* @__PURE__ */ jsxs4(
|
|
6547
6236
|
"svg",
|
|
6548
6237
|
{
|
|
6549
6238
|
width: "16",
|
|
@@ -6554,21 +6243,21 @@ var TextAlignJustifyIcon = React24.forwardRef(
|
|
|
6554
6243
|
...props,
|
|
6555
6244
|
ref: forwardedRef,
|
|
6556
6245
|
children: [
|
|
6557
|
-
/* @__PURE__ */
|
|
6246
|
+
/* @__PURE__ */ jsx13(
|
|
6558
6247
|
"path",
|
|
6559
6248
|
{
|
|
6560
6249
|
d: "M1 4C1 3.65482 1.27982 3.375 1.625 3.375H14.375C14.7202 3.375 15 3.65482 15 4C15 4.34518 14.7202 4.625 14.375 4.625H1.625C1.27982 4.625 1 4.34518 1 4Z",
|
|
6561
6250
|
fill: color
|
|
6562
6251
|
}
|
|
6563
6252
|
),
|
|
6564
|
-
/* @__PURE__ */
|
|
6253
|
+
/* @__PURE__ */ jsx13(
|
|
6565
6254
|
"path",
|
|
6566
6255
|
{
|
|
6567
6256
|
d: "M1 8C1 7.65482 1.27982 7.375 1.625 7.375H14.375C14.7202 7.375 15 7.65482 15 8C15 8.34518 14.7202 8.625 14.375 8.625H1.625C1.27982 8.625 1 8.34518 1 8Z",
|
|
6568
6257
|
fill: color
|
|
6569
6258
|
}
|
|
6570
6259
|
),
|
|
6571
|
-
/* @__PURE__ */
|
|
6260
|
+
/* @__PURE__ */ jsx13(
|
|
6572
6261
|
"path",
|
|
6573
6262
|
{
|
|
6574
6263
|
d: "M1.625 11.375C1.27982 11.375 1 11.6548 1 12C1 12.3452 1.27982 12.625 1.625 12.625H14.375C14.7202 12.625 15 12.3452 15 12C15 11.6548 14.7202 11.375 14.375 11.375H1.625Z",
|
|
@@ -6583,11 +6272,11 @@ var TextAlignJustifyIcon = React24.forwardRef(
|
|
|
6583
6272
|
TextAlignJustifyIcon.displayName = "TextAlignJustifyIcon";
|
|
6584
6273
|
|
|
6585
6274
|
// src/text-align-right.tsx
|
|
6586
|
-
import * as
|
|
6587
|
-
import { jsx as
|
|
6588
|
-
var TextAlignRightIcon =
|
|
6275
|
+
import * as React13 from "react";
|
|
6276
|
+
import { jsx as jsx14, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
6277
|
+
var TextAlignRightIcon = React13.forwardRef(
|
|
6589
6278
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6590
|
-
return /* @__PURE__ */
|
|
6279
|
+
return /* @__PURE__ */ jsxs5(
|
|
6591
6280
|
"svg",
|
|
6592
6281
|
{
|
|
6593
6282
|
width: "16",
|
|
@@ -6598,21 +6287,21 @@ var TextAlignRightIcon = React25.forwardRef(
|
|
|
6598
6287
|
...props,
|
|
6599
6288
|
ref: forwardedRef,
|
|
6600
6289
|
children: [
|
|
6601
|
-
/* @__PURE__ */
|
|
6290
|
+
/* @__PURE__ */ jsx14(
|
|
6602
6291
|
"path",
|
|
6603
6292
|
{
|
|
6604
6293
|
d: "M1 4C1 3.65482 1.27982 3.375 1.625 3.375H14.375C14.7202 3.375 15 3.65482 15 4C15 4.34518 14.7202 4.625 14.375 4.625H1.625C1.27982 4.625 1 4.34518 1 4Z",
|
|
6605
6294
|
fill: color
|
|
6606
6295
|
}
|
|
6607
6296
|
),
|
|
6608
|
-
/* @__PURE__ */
|
|
6297
|
+
/* @__PURE__ */ jsx14(
|
|
6609
6298
|
"path",
|
|
6610
6299
|
{
|
|
6611
6300
|
d: "M7 8C7 7.65482 7.27982 7.375 7.625 7.375H14.375C14.7202 7.375 15 7.65482 15 8C15 8.34518 14.7202 8.625 14.375 8.625H7.625C7.27982 8.625 7 8.34518 7 8Z",
|
|
6612
6301
|
fill: color
|
|
6613
6302
|
}
|
|
6614
6303
|
),
|
|
6615
|
-
/* @__PURE__ */
|
|
6304
|
+
/* @__PURE__ */ jsx14(
|
|
6616
6305
|
"path",
|
|
6617
6306
|
{
|
|
6618
6307
|
d: "M5 12C5 11.6548 5.27982 11.375 5.625 11.375H14.375C14.7202 11.375 15 11.6548 15 12C15 12.3452 14.7202 12.625 14.375 12.625H5.625C5.27982 12.625 5 12.3452 5 12Z",
|
|
@@ -6627,11 +6316,11 @@ var TextAlignRightIcon = React25.forwardRef(
|
|
|
6627
6316
|
TextAlignRightIcon.displayName = "TextAlignRightIcon";
|
|
6628
6317
|
|
|
6629
6318
|
// src/text-capitalize.tsx
|
|
6630
|
-
import * as
|
|
6631
|
-
import { jsx as
|
|
6632
|
-
var TextCapitalizeIcon =
|
|
6319
|
+
import * as React14 from "react";
|
|
6320
|
+
import { jsx as jsx15 } from "react/jsx-runtime";
|
|
6321
|
+
var TextCapitalizeIcon = React14.forwardRef(
|
|
6633
6322
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6634
|
-
return /* @__PURE__ */
|
|
6323
|
+
return /* @__PURE__ */ jsx15(
|
|
6635
6324
|
"svg",
|
|
6636
6325
|
{
|
|
6637
6326
|
width: "16",
|
|
@@ -6641,7 +6330,7 @@ var TextCapitalizeIcon = React26.forwardRef(
|
|
|
6641
6330
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6642
6331
|
...props,
|
|
6643
6332
|
ref: forwardedRef,
|
|
6644
|
-
children: /* @__PURE__ */
|
|
6333
|
+
children: /* @__PURE__ */ jsx15(
|
|
6645
6334
|
"path",
|
|
6646
6335
|
{
|
|
6647
6336
|
d: "M2.97885 8.20764C2.61986 8.20764 2.32885 8.49866 2.32885 8.85764C2.32885 9.21663 2.61986 9.50764 2.97885 9.50764V8.20764ZM6.45885 9.50764C6.81783 9.50764 7.10885 9.21663 7.10885 8.85764C7.10885 8.49866 6.81783 8.20764 6.45885 8.20764V9.50764ZM4.29644 4.81751L4.90952 5.03345L4.29644 4.81751ZM1.20577 11.6356C1.0865 11.9742 1.26431 12.3454 1.6029 12.4647C1.9415 12.5839 2.31267 12.4061 2.43193 12.0675L1.20577 11.6356ZM5.14126 4.81751L4.52818 5.03345V5.03345L5.14126 4.81751ZM7.00577 12.0675C7.12503 12.4061 7.4962 12.5839 7.83479 12.4647C8.17339 12.3454 8.35119 11.9742 8.23193 11.6356L7.00577 12.0675ZM4.59071 4.18692L4.24203 3.63836L4.24203 3.63836L4.59071 4.18692ZM4.84699 4.18692L5.19567 3.63836L5.19567 3.63836L4.84699 4.18692ZM9.74033 6.34775C9.4867 6.60179 9.48702 7.01335 9.74107 7.26699C9.99511 7.52062 10.4067 7.52029 10.6603 7.26625L9.74033 6.34775ZM13.8673 7.19908L13.2649 7.44319L13.2781 7.47586L13.2948 7.50691L13.8673 7.19908ZM13.0622 8.66143L12.9153 8.02825L13.0622 8.66143ZM9.68547 10.7235L9.03689 10.7664L9.68547 10.7235ZM2.97885 9.50764H6.45885V8.20764H2.97885V9.50764ZM3.68336 4.60156L1.20577 11.6356L2.43193 12.0675L4.90952 5.03345L3.68336 4.60156ZM4.52818 5.03345L7.00577 12.0675L8.23193 11.6356L5.75434 4.60156L4.52818 5.03345ZM4.90952 5.03345C4.94351 4.93693 4.97125 4.85822 4.996 4.79094C5.02094 4.72313 5.03942 4.67639 5.05396 4.64334C5.0694 4.60825 5.07319 4.60542 5.06484 4.61791C5.0568 4.62994 5.01859 4.68514 4.93939 4.73548L4.24203 3.63836C4.01318 3.78382 3.90853 4.01871 3.8641 4.11967C3.80654 4.25045 3.74674 4.42162 3.68336 4.60156L4.90952 5.03345ZM5.75434 4.60156C5.69096 4.42162 5.63115 4.25045 5.5736 4.11967C5.52916 4.01871 5.42451 3.78382 5.19567 3.63836L4.4983 4.73548C4.41911 4.68514 4.38089 4.62994 4.37285 4.61791C4.36451 4.60542 4.36829 4.60825 4.38374 4.64334C4.39828 4.67639 4.41675 4.72313 4.4417 4.79094C4.46644 4.85822 4.49418 4.93693 4.52818 5.03345L5.75434 4.60156ZM4.93939 4.73548C4.88097 4.77262 4.80474 4.79841 4.71885 4.79841C4.63295 4.79841 4.55673 4.77262 4.4983 4.73548L5.19567 3.63836C4.90209 3.45176 4.5356 3.45176 4.24203 3.63836L4.93939 4.73548ZM10.6603 7.26625C10.6308 7.29581 10.6471 7.27132 10.7739 7.21285C10.8802 7.16385 11.0216 7.1102 11.183 7.06039C11.5159 6.95766 11.864 6.89265 12.0975 6.89265V5.59265C11.6831 5.59265 11.1964 5.69577 10.7997 5.81818C10.5963 5.88095 10.3991 5.95413 10.2295 6.03233C10.0805 6.10106 9.88371 6.20414 9.74033 6.34775L10.6603 7.26625ZM12.0975 6.89265C12.6361 6.89265 12.8947 7.01242 13.0195 7.10261C13.1431 7.19192 13.2084 7.30385 13.2649 7.44319L14.4697 6.95497C14.3694 6.70732 14.1852 6.34104 13.7809 6.04889C13.3778 5.7576 12.8299 5.59265 12.0975 5.59265V6.89265ZM13.2948 7.50691C13.2705 7.46167 13.2702 7.44124 13.2798 7.48268C13.2872 7.51427 13.2963 7.56406 13.3058 7.63512C13.3247 7.77685 13.3406 7.96737 13.3531 8.19679L14.6511 8.126C14.6378 7.88167 14.6197 7.65312 14.5943 7.46318C14.5817 7.36841 14.5661 7.2742 14.5459 7.18774C14.5281 7.11113 14.4975 6.99859 14.4398 6.89126L13.2948 7.50691ZM13.3531 8.19679C13.3903 8.87957 13.3928 9.80903 13.3857 10.5657L14.6857 10.5778C14.6927 9.81805 14.6908 8.85318 14.6511 8.126L13.3531 8.19679ZM13.3857 10.5657C13.3824 10.9261 13.3769 11.2436 13.3723 11.4709C13.37 11.5845 13.3679 11.6755 13.3663 11.7379C13.3656 11.7691 13.365 11.7932 13.3645 11.8094C13.3643 11.8175 13.3642 11.8236 13.3641 11.8276C13.364 11.8297 13.364 11.8312 13.3639 11.8322C13.3639 11.8327 13.3639 11.833 13.3639 11.8333C13.3639 11.8334 13.3639 11.8334 13.3639 11.8335C13.3639 11.8335 13.3639 11.8335 13.3639 11.8335C13.3639 11.8335 13.3639 11.8335 13.3639 11.8335C13.3639 11.8335 13.3639 11.8335 14.0137 11.8515C14.6634 11.8694 14.6634 11.8694 14.6634 11.8694C14.6634 11.8694 14.6634 11.8694 14.6634 11.8693C14.6634 11.8693 14.6634 11.8693 14.6634 11.8692C14.6634 11.8692 14.6634 11.869 14.6634 11.8689C14.6634 11.8686 14.6634 11.8681 14.6635 11.8675C14.6635 11.8664 14.6635 11.8647 14.6636 11.8625C14.6637 11.8581 14.6639 11.8516 14.6641 11.8432C14.6645 11.8263 14.6652 11.8015 14.666 11.7695C14.6675 11.7055 14.6697 11.6128 14.672 11.4973C14.6767 11.2664 14.6823 10.944 14.6857 10.5778L13.3857 10.5657ZM14.0256 8.12982C13.4757 7.78323 13.4758 7.78317 13.4758 7.78311C13.4758 7.78309 13.4759 7.78303 13.4759 7.78299C13.4759 7.78291 13.476 7.78283 13.476 7.78275C13.4761 7.78259 13.4762 7.78243 13.4763 7.78227C13.4765 7.78196 13.4767 7.78165 13.4769 7.78134C13.4773 7.78072 13.4777 7.78011 13.4781 7.77952C13.4789 7.77832 13.4796 7.77717 13.4803 7.77606C13.4818 7.77384 13.4831 7.77178 13.4844 7.76989C13.4869 7.7661 13.4891 7.76295 13.491 7.76039C13.4946 7.75529 13.4968 7.75259 13.4973 7.75196L14.5069 8.57083C14.5237 8.55021 14.5376 8.53172 14.5489 8.51583C14.5546 8.50788 14.5596 8.50059 14.5641 8.494C14.5663 8.49071 14.5683 8.48759 14.5702 8.48466C14.5712 8.48319 14.5721 8.48177 14.573 8.4804C14.5734 8.47971 14.5738 8.47904 14.5743 8.47837C14.5745 8.47804 14.5747 8.47771 14.5749 8.47739C14.575 8.47722 14.5751 8.47706 14.5752 8.4769C14.5753 8.47682 14.5753 8.47674 14.5754 8.47666C14.5754 8.47662 14.5754 8.47656 14.5754 8.47654C14.5755 8.47648 14.5755 8.47642 14.0256 8.12982ZM13.4973 7.75196C13.5081 7.73866 13.3695 7.92284 12.9153 8.02825L13.2092 9.2946C13.9632 9.11963 14.3476 8.76735 14.5069 8.57083L13.4973 7.75196ZM12.9153 8.02825C12.7168 8.07431 12.443 8.10398 12.0304 8.16736C11.6516 8.22553 11.2006 8.3075 10.7723 8.45375C10.3483 8.59854 9.89199 8.82415 9.54891 9.20414C9.18684 9.60519 8.99482 10.1301 9.03689 10.7664L10.3341 10.6806C10.3141 10.3787 10.3982 10.2034 10.5138 10.0753C10.6485 9.92612 10.8717 9.79351 11.1924 9.68401C11.5088 9.57598 11.8677 9.50759 12.2277 9.45229C12.5538 9.4022 12.9476 9.35529 13.2092 9.2946L12.9153 8.02825ZM9.03689 10.7664C9.1013 11.7405 9.97373 12.352 10.9543 12.442C11.9617 12.5344 13.1979 12.1313 14.4553 11.0681L13.616 10.0754C12.5432 10.9824 11.6402 11.1995 11.0731 11.1474C10.4791 11.0929 10.3416 10.7952 10.3341 10.6806L9.03689 10.7664ZM14.4553 11.0681C14.5078 11.0238 14.5602 10.9783 14.6128 10.9317L13.7495 9.95967C13.7048 9.9994 13.6603 10.038 13.616 10.0754L14.4553 11.0681Z",
|
|
@@ -6655,11 +6344,11 @@ var TextCapitalizeIcon = React26.forwardRef(
|
|
|
6655
6344
|
TextCapitalizeIcon.displayName = "TextCapitalizeIcon";
|
|
6656
6345
|
|
|
6657
6346
|
// src/text-hyphen.tsx
|
|
6658
|
-
import * as
|
|
6659
|
-
import { jsx as
|
|
6660
|
-
var TextHyphenIcon =
|
|
6347
|
+
import * as React15 from "react";
|
|
6348
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
6349
|
+
var TextHyphenIcon = React15.forwardRef(
|
|
6661
6350
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6662
|
-
return /* @__PURE__ */
|
|
6351
|
+
return /* @__PURE__ */ jsx16(
|
|
6663
6352
|
"svg",
|
|
6664
6353
|
{
|
|
6665
6354
|
width: "16",
|
|
@@ -6669,7 +6358,7 @@ var TextHyphenIcon = React27.forwardRef(
|
|
|
6669
6358
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6670
6359
|
...props,
|
|
6671
6360
|
ref: forwardedRef,
|
|
6672
|
-
children: /* @__PURE__ */
|
|
6361
|
+
children: /* @__PURE__ */ jsx16(
|
|
6673
6362
|
"path",
|
|
6674
6363
|
{
|
|
6675
6364
|
fillRule: "evenodd",
|
|
@@ -6685,11 +6374,11 @@ var TextHyphenIcon = React27.forwardRef(
|
|
|
6685
6374
|
TextHyphenIcon.displayName = "TextHyphenIcon";
|
|
6686
6375
|
|
|
6687
6376
|
// src/text-lowercase.tsx
|
|
6688
|
-
import * as
|
|
6689
|
-
import { jsx as
|
|
6690
|
-
var TextLowercaseIcon =
|
|
6377
|
+
import * as React16 from "react";
|
|
6378
|
+
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
6379
|
+
var TextLowercaseIcon = React16.forwardRef(
|
|
6691
6380
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6692
|
-
return /* @__PURE__ */
|
|
6381
|
+
return /* @__PURE__ */ jsx17(
|
|
6693
6382
|
"svg",
|
|
6694
6383
|
{
|
|
6695
6384
|
width: "16",
|
|
@@ -6699,7 +6388,7 @@ var TextLowercaseIcon = React28.forwardRef(
|
|
|
6699
6388
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6700
6389
|
...props,
|
|
6701
6390
|
ref: forwardedRef,
|
|
6702
|
-
children: /* @__PURE__ */
|
|
6391
|
+
children: /* @__PURE__ */ jsx17(
|
|
6703
6392
|
"path",
|
|
6704
6393
|
{
|
|
6705
6394
|
d: "M2.30954 6.49619C2.05591 6.75023 2.05624 7.16179 2.31028 7.41543C2.56432 7.66907 2.97588 7.66874 3.22952 7.41469L2.30954 6.49619ZM6.43651 7.34753L5.83409 7.59164L5.84732 7.62431L5.86402 7.65535L6.43651 7.34753ZM5.63107 8.80987L5.48413 8.17669L5.63107 8.80987ZM2.25432 10.8719L2.90291 10.829L2.25432 10.8719ZM9.30955 6.49619C9.05591 6.75023 9.05624 7.16179 9.31028 7.41543C9.56432 7.66907 9.97588 7.66874 10.2295 7.41469L9.30955 6.49619ZM13.4365 7.34753L12.8341 7.59164L12.8473 7.62431L12.864 7.65535L13.4365 7.34753ZM12.6311 8.80987L12.4841 8.17669L12.6311 8.80987ZM9.25432 10.8719L9.90291 10.829L9.25432 10.8719ZM3.22952 7.41469C3.20001 7.44425 3.21633 7.41976 3.34313 7.36129C3.44938 7.31229 3.59078 7.25864 3.7522 7.20884C4.08516 7.1061 4.43317 7.0411 4.66674 7.0411V5.7411C4.25235 5.7411 3.76563 5.84422 3.36891 5.96663C3.16548 6.02939 2.96831 6.10257 2.79873 6.18077C2.64969 6.2495 2.45292 6.35258 2.30954 6.49619L3.22952 7.41469ZM4.66674 7.0411C5.20527 7.0411 5.46393 7.16087 5.58874 7.25105C5.71235 7.34036 5.77762 7.4523 5.83409 7.59164L7.03893 7.10342C6.93857 6.85576 6.75444 6.48949 6.35011 6.19733C5.94697 5.90605 5.39915 5.7411 4.66674 5.7411V7.0411ZM5.86402 7.65535C5.8397 7.61012 5.8394 7.58969 5.84905 7.6311C5.85641 7.66267 5.86548 7.71242 5.87496 7.78344C5.89386 7.9251 5.90975 8.11552 5.92226 8.34483L7.22033 8.27401C7.20701 8.02978 7.18887 7.80132 7.16353 7.61146C7.15089 7.51672 7.13528 7.42254 7.11514 7.33611C7.09729 7.25951 7.06669 7.147 7.00899 7.0397L5.86402 7.65535ZM5.92226 8.34483C5.95951 9.02755 5.96198 9.95707 5.95493 10.7138L7.25488 10.7259C7.26195 9.96608 7.26001 9.00115 7.22033 8.27401L5.92226 8.34483ZM5.95493 10.7138C5.95158 11.0743 5.94611 11.3919 5.94148 11.6192C5.93917 11.7329 5.93707 11.8239 5.93555 11.8863C5.93479 11.9175 5.93418 11.9416 5.93376 11.9578C5.93355 11.9659 5.93338 11.972 5.93327 11.9761C5.93322 11.9781 5.93318 11.9796 5.93315 11.9806C5.93314 11.9811 5.93313 11.9815 5.93312 11.9817C5.93312 11.9818 5.93312 11.9819 5.93312 11.9819C5.93312 11.982 5.93312 11.982 5.93312 11.982C5.93311 11.982 5.93312 11.982 5.93311 11.982C5.93312 11.982 5.93312 11.982 6.58287 11.9999C7.23262 12.0178 7.23262 12.0178 7.23262 12.0178C7.23262 12.0178 7.23262 12.0178 7.23262 12.0178C7.23262 12.0178 7.23262 12.0177 7.23262 12.0177C7.23263 12.0176 7.23263 12.0175 7.23263 12.0173C7.23264 12.017 7.23266 12.0166 7.23267 12.016C7.2327 12.0148 7.23275 12.0132 7.23281 12.011C7.23292 12.0066 7.2331 12.0001 7.23332 11.9916C7.23376 11.9747 7.23439 11.9499 7.23517 11.9179C7.23672 11.8539 7.23886 11.7612 7.24121 11.6457C7.24591 11.4147 7.25147 11.0922 7.25488 10.7259L5.95493 10.7138ZM6.59447 8.27827C6.0446 7.93166 6.04463 7.9316 6.04467 7.93154C6.04468 7.93152 6.04472 7.93146 6.04475 7.93142C6.0448 7.93134 6.04485 7.93126 6.04489 7.93119C6.04499 7.93103 6.04509 7.93087 6.04519 7.93072C6.04539 7.9304 6.04559 7.93009 6.04578 7.92979C6.04617 7.92917 6.04656 7.92857 6.04694 7.92798C6.04769 7.92679 6.04843 7.92565 6.04915 7.92454C6.05059 7.92233 6.05194 7.92029 6.0532 7.9184C6.05573 7.91463 6.05791 7.91149 6.05973 7.90894C6.06337 7.90385 6.06554 7.90112 6.06609 7.90043L7.0765 8.71841C7.09303 8.69799 7.10679 8.67968 7.11802 8.66394C7.12364 8.65607 7.12862 8.64884 7.13299 8.64231C7.13518 8.63905 7.13722 8.63596 7.13911 8.63305C7.14006 8.63159 7.14097 8.63019 7.14184 8.62882C7.14228 8.62814 7.1427 8.62747 7.14312 8.62681C7.14333 8.62648 7.14354 8.62616 7.14374 8.62583C7.14384 8.62567 7.14395 8.62551 7.14405 8.62535C7.1441 8.62527 7.14415 8.62519 7.1442 8.62511C7.14422 8.62507 7.14426 8.62501 7.14427 8.62499C7.14431 8.62493 7.14435 8.62487 6.59447 8.27827ZM6.0661 7.90043C6.07733 7.88656 5.93903 8.07113 5.48413 8.17669L5.778 9.44304C6.5332 9.26779 6.9176 8.91469 7.0765 8.71841L6.0661 7.90043ZM5.48413 8.17669C5.28566 8.22275 5.01188 8.25242 4.59921 8.3158C4.2205 8.37397 3.76945 8.45594 3.34114 8.6022C2.91711 8.74698 2.46083 8.97259 2.11776 9.35259C1.75568 9.75364 1.56367 10.2786 1.60574 10.9148L2.90291 10.829C2.88294 10.5271 2.967 10.3519 3.08269 10.2237C3.21738 10.0746 3.44054 9.94195 3.76122 9.83245C4.0776 9.72442 4.43651 9.65604 4.79657 9.60074C5.12268 9.55065 5.51649 9.50373 5.778 9.44304L5.48413 8.17669ZM1.60574 10.9148C1.67016 11.889 2.54267 12.5005 3.5233 12.5904C4.53081 12.6828 5.76702 12.2796 7.02459 11.2162L6.18521 10.2235C5.11229 11.1308 4.20921 11.3479 3.64204 11.2959C3.04801 11.2414 2.91048 10.9436 2.90291 10.829L1.60574 10.9148ZM7.02459 11.2162C7.07687 11.172 7.12922 11.1267 7.18163 11.0801L6.31837 10.1081C6.27374 10.1477 6.22935 10.1862 6.18521 10.2235L7.02459 11.2162ZM10.2295 7.41469C10.2 7.44425 10.2163 7.41976 10.3431 7.36129C10.4494 7.31229 10.5908 7.25864 10.7522 7.20884C11.0852 7.1061 11.4332 7.0411 11.6667 7.0411V5.7411C11.2523 5.7411 10.7656 5.84422 10.3689 5.96663C10.1655 6.02939 9.96831 6.10257 9.79873 6.18077C9.64969 6.2495 9.45292 6.35258 9.30955 6.49619L10.2295 7.41469ZM11.6667 7.0411C12.2053 7.0411 12.4639 7.16087 12.5887 7.25105C12.7123 7.34036 12.7776 7.4523 12.8341 7.59164L14.0389 7.10342C13.9386 6.85576 13.7544 6.48949 13.3501 6.19733C12.947 5.90605 12.3992 5.7411 11.6667 5.7411V7.0411ZM12.864 7.65535C12.8397 7.61012 12.8394 7.58969 12.8491 7.6311C12.8564 7.66267 12.8655 7.71242 12.875 7.78344C12.8939 7.9251 12.9098 8.11552 12.9223 8.34483L14.2203 8.27401C14.207 8.02978 14.1889 7.80132 14.1635 7.61146C14.1509 7.51672 14.1353 7.42254 14.1151 7.33611C14.0973 7.25951 14.0667 7.147 14.009 7.0397L12.864 7.65535ZM12.9223 8.34483C12.9595 9.02755 12.962 9.95707 12.9549 10.7138L14.2549 10.7259C14.2619 9.96608 14.26 9.00115 14.2203 8.27401L12.9223 8.34483ZM12.9549 10.7138C12.9516 11.0743 12.9461 11.3919 12.9415 11.6192C12.9392 11.7329 12.9371 11.8239 12.9356 11.8863C12.9348 11.9175 12.9342 11.9416 12.9338 11.9578C12.9335 11.9659 12.9334 11.972 12.9333 11.9761C12.9332 11.9781 12.9332 11.9796 12.9332 11.9806C12.9331 11.9811 12.9331 11.9815 12.9331 11.9817C12.9331 11.9818 12.9331 11.9819 12.9331 11.9819C12.9331 11.982 12.9331 11.982 12.9331 11.982C12.9331 11.982 12.9331 11.982 12.9331 11.982C12.9331 11.982 12.9331 11.982 13.5829 11.9999C14.2326 12.0178 14.2326 12.0178 14.2326 12.0178C14.2326 12.0178 14.2326 12.0178 14.2326 12.0178C14.2326 12.0178 14.2326 12.0177 14.2326 12.0177C14.2326 12.0176 14.2326 12.0175 14.2326 12.0173C14.2326 12.017 14.2327 12.0166 14.2327 12.016C14.2327 12.0148 14.2327 12.0132 14.2328 12.011C14.2329 12.0066 14.2331 12.0001 14.2333 11.9916C14.2338 11.9747 14.2344 11.9499 14.2352 11.9179C14.2367 11.8539 14.2389 11.7612 14.2412 11.6457C14.2459 11.4147 14.2515 11.0922 14.2549 10.7259L12.9549 10.7138ZM13.5945 8.27827C13.0446 7.93166 13.0446 7.9316 13.0447 7.93154C13.0447 7.93152 13.0447 7.93146 13.0447 7.93142C13.0448 7.93134 13.0448 7.93126 13.0449 7.93119C13.045 7.93103 13.0451 7.93087 13.0452 7.93072C13.0454 7.9304 13.0456 7.93009 13.0458 7.92979C13.0462 7.92917 13.0466 7.92857 13.0469 7.92798C13.0477 7.92679 13.0484 7.92565 13.0492 7.92454C13.0506 7.92233 13.0519 7.92029 13.0532 7.9184C13.0557 7.91463 13.0579 7.91149 13.0597 7.90894C13.0634 7.90385 13.0655 7.90112 13.0661 7.90043L14.0765 8.71841C14.093 8.69799 14.1068 8.67968 14.118 8.66394C14.1236 8.65607 14.1286 8.64884 14.133 8.64231C14.1352 8.63905 14.1372 8.63596 14.1391 8.63305C14.1401 8.63159 14.141 8.63019 14.1418 8.62882C14.1423 8.62814 14.1427 8.62747 14.1431 8.62681C14.1433 8.62648 14.1435 8.62616 14.1437 8.62583C14.1438 8.62567 14.1439 8.62551 14.144 8.62535C14.1441 8.62527 14.1441 8.62519 14.1442 8.62511C14.1442 8.62507 14.1443 8.62501 14.1443 8.62499C14.1443 8.62493 14.1443 8.62487 13.5945 8.27827ZM13.0661 7.90043C13.0773 7.88656 12.939 8.07113 12.4841 8.17669L12.778 9.44304C13.5332 9.26779 13.9176 8.91469 14.0765 8.71841L13.0661 7.90043ZM12.4841 8.17669C12.2857 8.22275 12.0119 8.25242 11.5992 8.3158C11.2205 8.37397 10.7695 8.45594 10.3411 8.6022C9.91711 8.74698 9.46083 8.97259 9.11776 9.35259C8.75568 9.75364 8.56367 10.2786 8.60574 10.9148L9.90291 10.829C9.88294 10.5271 9.967 10.3519 10.0827 10.2237C10.2174 10.0746 10.4405 9.94195 10.7612 9.83245C11.0776 9.72442 11.4365 9.65604 11.7966 9.60074C12.1227 9.55065 12.5165 9.50373 12.778 9.44304L12.4841 8.17669ZM8.60574 10.9148C8.67016 11.889 9.54267 12.5005 10.5233 12.5904C11.5308 12.6828 12.767 12.2796 14.0246 11.2162L13.1852 10.2235C12.1123 11.1308 11.2092 11.3479 10.642 11.2959C10.048 11.2414 9.91048 10.9436 9.90291 10.829L8.60574 10.9148ZM14.0246 11.2162C14.0769 11.172 14.1292 11.1267 14.1816 11.0801L13.3184 10.1081C13.2737 10.1477 13.2294 10.1862 13.1852 10.2235L14.0246 11.2162Z",
|
|
@@ -6713,11 +6402,11 @@ var TextLowercaseIcon = React28.forwardRef(
|
|
|
6713
6402
|
TextLowercaseIcon.displayName = "TextLowercaseIcon";
|
|
6714
6403
|
|
|
6715
6404
|
// src/text-strikethrough.tsx
|
|
6716
|
-
import * as
|
|
6717
|
-
import { jsx as
|
|
6718
|
-
var TextStrikethroughIcon =
|
|
6405
|
+
import * as React17 from "react";
|
|
6406
|
+
import { jsx as jsx18, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
6407
|
+
var TextStrikethroughIcon = React17.forwardRef(
|
|
6719
6408
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6720
|
-
return /* @__PURE__ */
|
|
6409
|
+
return /* @__PURE__ */ jsxs6(
|
|
6721
6410
|
"svg",
|
|
6722
6411
|
{
|
|
6723
6412
|
width: "16",
|
|
@@ -6728,21 +6417,21 @@ var TextStrikethroughIcon = React29.forwardRef(
|
|
|
6728
6417
|
...props,
|
|
6729
6418
|
ref: forwardedRef,
|
|
6730
6419
|
children: [
|
|
6731
|
-
/* @__PURE__ */
|
|
6420
|
+
/* @__PURE__ */ jsx18(
|
|
6732
6421
|
"path",
|
|
6733
6422
|
{
|
|
6734
6423
|
d: "M5.82521 2.94998C6.50328 2.40116 7.40433 2.125 8.34865 2.125C9.89864 2.125 11.3095 2.79299 11.8362 4.32438C11.9485 4.65079 11.7748 5.0064 11.4484 5.11866C11.122 5.23092 10.7664 5.05731 10.6541 4.7309C10.3558 3.86342 9.55544 3.375 8.34865 3.375C7.6374 3.375 7.02905 3.58374 6.61162 3.9216C6.20592 4.24996 5.95485 4.71776 5.95485 5.32689C5.95485 5.8952 6.21462 6.25961 6.54642 6.52111C6.66036 6.61091 6.78052 6.6864 6.89868 6.75H5.09412C4.86079 6.37035 4.70485 5.90046 4.70485 5.32689C4.70485 4.32895 5.1354 3.50829 5.82521 2.94998Z",
|
|
6735
6424
|
fill: color
|
|
6736
6425
|
}
|
|
6737
6426
|
),
|
|
6738
|
-
/* @__PURE__ */
|
|
6427
|
+
/* @__PURE__ */ jsx18(
|
|
6739
6428
|
"path",
|
|
6740
6429
|
{
|
|
6741
6430
|
d: "M10.6813 9.75H12.0228C12.0884 9.99225 12.125 10.2587 12.125 10.5514C12.125 11.5568 11.7375 12.4146 11.0147 13.009C10.3059 13.5919 9.33318 13.875 8.22795 13.875C6.42452 13.875 5.0547 13.2188 4.51522 11.7922C4.39313 11.4693 4.55589 11.1086 4.87875 10.9865C5.20162 10.8644 5.56233 11.0272 5.68441 11.3501C5.96897 12.1026 6.70934 12.625 8.22795 12.625C9.13269 12.625 9.79597 12.3929 10.2207 12.0436C10.6315 11.7058 10.875 11.2143 10.875 10.5514C10.875 10.2188 10.8015 9.95921 10.6813 9.75Z",
|
|
6742
6431
|
fill: color
|
|
6743
6432
|
}
|
|
6744
6433
|
),
|
|
6745
|
-
/* @__PURE__ */
|
|
6434
|
+
/* @__PURE__ */ jsx18(
|
|
6746
6435
|
"path",
|
|
6747
6436
|
{
|
|
6748
6437
|
d: "M3.00012 7.58447C2.65494 7.58447 2.37512 7.86429 2.37512 8.20947C2.37512 8.55465 2.65494 8.83447 3.00012 8.83447H13.0001C13.3453 8.83447 13.6251 8.55465 13.6251 8.20947C13.6251 7.86429 13.3453 7.58447 13.0001 7.58447H3.00012Z",
|
|
@@ -6757,11 +6446,11 @@ var TextStrikethroughIcon = React29.forwardRef(
|
|
|
6757
6446
|
TextStrikethroughIcon.displayName = "TextStrikethroughIcon";
|
|
6758
6447
|
|
|
6759
6448
|
// src/text-truncate.tsx
|
|
6760
|
-
import * as
|
|
6761
|
-
import { jsx as
|
|
6762
|
-
var TextTruncateIcon =
|
|
6449
|
+
import * as React18 from "react";
|
|
6450
|
+
import { jsx as jsx19, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
6451
|
+
var TextTruncateIcon = React18.forwardRef(
|
|
6763
6452
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6764
|
-
return /* @__PURE__ */
|
|
6453
|
+
return /* @__PURE__ */ jsxs7(
|
|
6765
6454
|
"svg",
|
|
6766
6455
|
{
|
|
6767
6456
|
width: "16",
|
|
@@ -6772,28 +6461,28 @@ var TextTruncateIcon = React30.forwardRef(
|
|
|
6772
6461
|
...props,
|
|
6773
6462
|
ref: forwardedRef,
|
|
6774
6463
|
children: [
|
|
6775
|
-
/* @__PURE__ */
|
|
6464
|
+
/* @__PURE__ */ jsx19(
|
|
6776
6465
|
"path",
|
|
6777
6466
|
{
|
|
6778
6467
|
d: "M10.8285 1.2998H5.1711C4.63547 1.2998 4.19138 1.29979 3.82921 1.32938C3.45241 1.36016 3.10307 1.42643 2.77403 1.59409C2.26599 1.85295 1.85295 2.26599 1.59409 2.77403C1.42643 3.10307 1.36016 3.45241 1.32938 3.82921C1.29979 4.19137 1.2998 4.63545 1.2998 5.17109V10.8285C1.2998 11.3641 1.29979 11.8082 1.32938 12.1704C1.36016 12.5472 1.42643 12.8965 1.59409 13.2256C1.85295 13.7336 2.26599 14.1467 2.77403 14.4055C3.10307 14.5732 3.45241 14.6394 3.82921 14.6702C3.97287 14.682 4.12941 14.6891 4.29945 14.6933C4.68616 14.703 5 14.386 5 13.9992C5 13.6128 4.68684 13.3036 4.30058 13.2929C4.1673 13.2892 4.04965 13.2836 3.94321 13.2749C3.653 13.2512 3.5084 13.2084 3.40962 13.1581C3.16501 13.0335 2.96613 12.8346 2.8415 12.59C2.79116 12.4912 2.74844 12.3466 2.72473 12.0564C2.70035 11.758 2.69981 11.3714 2.69981 10.7998V5.19981C2.69981 4.6282 2.70035 4.2416 2.72473 3.94321C2.74844 3.653 2.79116 3.5084 2.8415 3.40962C2.96613 3.16501 3.16501 2.96613 3.40962 2.8415C3.5084 2.79116 3.653 2.74844 3.94321 2.72473C4.2416 2.70035 4.6282 2.69981 5.19981 2.69981H10.7998C11.3714 2.69981 11.758 2.70035 12.0564 2.72473C12.3466 2.74844 12.4912 2.79116 12.59 2.8415C12.8346 2.96613 13.0335 3.16501 13.1581 3.40962C13.2084 3.5084 13.2512 3.653 13.2749 3.94321C13.2993 4.2416 13.2998 4.6282 13.2998 5.19981V9.3C13.2998 9.6866 13.6132 10 13.9998 10C14.3864 10 14.6998 9.6866 14.6998 9.3V5.17114C14.6998 4.63548 14.6998 4.19139 14.6702 3.82921C14.6394 3.45241 14.5732 3.10307 14.4055 2.77403C14.1467 2.26599 13.7336 1.85295 13.2256 1.59409C12.8965 1.42643 12.5472 1.36016 12.1704 1.32938C11.8082 1.29979 11.3641 1.2998 10.8285 1.2998Z",
|
|
6779
6468
|
fill: color
|
|
6780
6469
|
}
|
|
6781
6470
|
),
|
|
6782
|
-
/* @__PURE__ */
|
|
6471
|
+
/* @__PURE__ */ jsx19(
|
|
6783
6472
|
"path",
|
|
6784
6473
|
{
|
|
6785
6474
|
d: "M8.00001 12C8.55229 12 9.00001 12.4477 9.00001 13C9.00001 13.5523 8.55229 14 8.00001 14C7.44772 14 7.00001 13.5523 7.00001 13C7.00001 12.4477 7.44772 12 8.00001 12Z",
|
|
6786
6475
|
fill: color
|
|
6787
6476
|
}
|
|
6788
6477
|
),
|
|
6789
|
-
/* @__PURE__ */
|
|
6478
|
+
/* @__PURE__ */ jsx19(
|
|
6790
6479
|
"path",
|
|
6791
6480
|
{
|
|
6792
6481
|
d: "M11 12C11.5523 12 12 12.4477 12 13C12 13.5523 11.5523 14 11 14C10.4477 14 10 13.5523 10 13C10 12.4477 10.4477 12 11 12Z",
|
|
6793
6482
|
fill: color
|
|
6794
6483
|
}
|
|
6795
6484
|
),
|
|
6796
|
-
/* @__PURE__ */
|
|
6485
|
+
/* @__PURE__ */ jsx19(
|
|
6797
6486
|
"path",
|
|
6798
6487
|
{
|
|
6799
6488
|
d: "M14 12C14.5523 12 15 12.4477 15 13C15 13.5523 14.5523 14 14 14C13.4477 14 13 13.5523 13 13C13 12.4477 13.4477 12 14 12Z",
|
|
@@ -6808,11 +6497,11 @@ var TextTruncateIcon = React30.forwardRef(
|
|
|
6808
6497
|
TextTruncateIcon.displayName = "TextTruncateIcon";
|
|
6809
6498
|
|
|
6810
6499
|
// src/text-underline.tsx
|
|
6811
|
-
import * as
|
|
6812
|
-
import { jsx as
|
|
6813
|
-
var TextUnderlineIcon =
|
|
6500
|
+
import * as React19 from "react";
|
|
6501
|
+
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
6502
|
+
var TextUnderlineIcon = React19.forwardRef(
|
|
6814
6503
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6815
|
-
return /* @__PURE__ */
|
|
6504
|
+
return /* @__PURE__ */ jsx20(
|
|
6816
6505
|
"svg",
|
|
6817
6506
|
{
|
|
6818
6507
|
width: "16",
|
|
@@ -6822,7 +6511,7 @@ var TextUnderlineIcon = React31.forwardRef(
|
|
|
6822
6511
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6823
6512
|
...props,
|
|
6824
6513
|
ref: forwardedRef,
|
|
6825
|
-
children: /* @__PURE__ */
|
|
6514
|
+
children: /* @__PURE__ */ jsx20(
|
|
6826
6515
|
"path",
|
|
6827
6516
|
{
|
|
6828
6517
|
fillRule: "evenodd",
|
|
@@ -6838,11 +6527,11 @@ var TextUnderlineIcon = React31.forwardRef(
|
|
|
6838
6527
|
TextUnderlineIcon.displayName = "TextUnderlineIcon";
|
|
6839
6528
|
|
|
6840
6529
|
// src/text-uppercase.tsx
|
|
6841
|
-
import * as
|
|
6842
|
-
import { jsx as
|
|
6843
|
-
var TextUppercaseIcon =
|
|
6530
|
+
import * as React20 from "react";
|
|
6531
|
+
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
6532
|
+
var TextUppercaseIcon = React20.forwardRef(
|
|
6844
6533
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6845
|
-
return /* @__PURE__ */
|
|
6534
|
+
return /* @__PURE__ */ jsx21(
|
|
6846
6535
|
"svg",
|
|
6847
6536
|
{
|
|
6848
6537
|
width: "16",
|
|
@@ -6852,7 +6541,7 @@ var TextUppercaseIcon = React32.forwardRef(
|
|
|
6852
6541
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6853
6542
|
...props,
|
|
6854
6543
|
ref: forwardedRef,
|
|
6855
|
-
children: /* @__PURE__ */
|
|
6544
|
+
children: /* @__PURE__ */ jsx21(
|
|
6856
6545
|
"path",
|
|
6857
6546
|
{
|
|
6858
6547
|
d: "M2.33566 8.8573H5.81566M1.17566 11.85L3.65325 4.81882C3.78744 4.43799 3.85454 4.24757 3.94752 4.1885C4.02831 4.13717 4.12301 4.13717 4.2038 4.1885C4.29678 4.24757 4.36387 4.43799 4.49807 4.81882L6.97566 11.85M10.1843 8.85777H13.6643M9.02429 11.8517L11.5019 4.81764C11.6361 4.43664 11.7032 4.24615 11.7962 4.18705C11.8769 4.1357 11.9716 4.1357 12.0524 4.18705C12.1454 4.24615 12.2125 4.43664 12.3467 4.81764L14.8243 11.8517",
|
|
@@ -6869,11 +6558,11 @@ var TextUppercaseIcon = React32.forwardRef(
|
|
|
6869
6558
|
TextUppercaseIcon.displayName = "TextUppercaseIcon";
|
|
6870
6559
|
|
|
6871
6560
|
// src/text-direction-ltr.tsx
|
|
6872
|
-
import * as
|
|
6873
|
-
import { jsx as
|
|
6874
|
-
var TextDirectionLTRIcon =
|
|
6561
|
+
import * as React21 from "react";
|
|
6562
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
6563
|
+
var TextDirectionLTRIcon = React21.forwardRef(
|
|
6875
6564
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6876
|
-
return /* @__PURE__ */
|
|
6565
|
+
return /* @__PURE__ */ jsx22(
|
|
6877
6566
|
"svg",
|
|
6878
6567
|
{
|
|
6879
6568
|
width: "16",
|
|
@@ -6883,7 +6572,7 @@ var TextDirectionLTRIcon = React33.forwardRef(
|
|
|
6883
6572
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6884
6573
|
...props,
|
|
6885
6574
|
ref: forwardedRef,
|
|
6886
|
-
children: /* @__PURE__ */
|
|
6575
|
+
children: /* @__PURE__ */ jsx22(
|
|
6887
6576
|
"path",
|
|
6888
6577
|
{
|
|
6889
6578
|
fillRule: "evenodd",
|
|
@@ -6899,11 +6588,11 @@ var TextDirectionLTRIcon = React33.forwardRef(
|
|
|
6899
6588
|
TextDirectionLTRIcon.displayName = "TextDirectionLTRIcon";
|
|
6900
6589
|
|
|
6901
6590
|
// src/text-direction-rtl.tsx
|
|
6902
|
-
import * as
|
|
6903
|
-
import { jsx as
|
|
6904
|
-
var TextDirectionRTLIcon =
|
|
6591
|
+
import * as React22 from "react";
|
|
6592
|
+
import { jsx as jsx23 } from "react/jsx-runtime";
|
|
6593
|
+
var TextDirectionRTLIcon = React22.forwardRef(
|
|
6905
6594
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
6906
|
-
return /* @__PURE__ */
|
|
6595
|
+
return /* @__PURE__ */ jsx23(
|
|
6907
6596
|
"svg",
|
|
6908
6597
|
{
|
|
6909
6598
|
width: "16",
|
|
@@ -6913,7 +6602,7 @@ var TextDirectionRTLIcon = React34.forwardRef(
|
|
|
6913
6602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6914
6603
|
...props,
|
|
6915
6604
|
ref: forwardedRef,
|
|
6916
|
-
children: /* @__PURE__ */
|
|
6605
|
+
children: /* @__PURE__ */ jsx23(
|
|
6917
6606
|
"path",
|
|
6918
6607
|
{
|
|
6919
6608
|
fillRule: "evenodd",
|
|
@@ -6989,10 +6678,7 @@ export {
|
|
|
6989
6678
|
ChevronBigLeftIcon,
|
|
6990
6679
|
ChevronBigRightIcon,
|
|
6991
6680
|
ChevronBigUpIcon,
|
|
6992
|
-
ChevronDoubleDownIcon,
|
|
6993
6681
|
ChevronDoubleLeftIcon,
|
|
6994
|
-
ChevronDoubleRightIcon,
|
|
6995
|
-
ChevronDoubleUpIcon,
|
|
6996
6682
|
ChevronDownIcon,
|
|
6997
6683
|
ChevronFilledDownIcon,
|
|
6998
6684
|
ChevronFilledLeftIcon,
|
|
@@ -7010,7 +6696,6 @@ export {
|
|
|
7010
6696
|
CopyIcon,
|
|
7011
6697
|
CrossCircledFilledIcon,
|
|
7012
6698
|
CrossIcon,
|
|
7013
|
-
CrossLargeIcon,
|
|
7014
6699
|
CrossSmallIcon,
|
|
7015
6700
|
CustomCodeIcon,
|
|
7016
6701
|
DashBorderIcon,
|
|
@@ -7018,7 +6703,6 @@ export {
|
|
|
7018
6703
|
DashedBorderIcon,
|
|
7019
6704
|
DeleteIcon,
|
|
7020
6705
|
DescriptionIcon,
|
|
7021
|
-
DevicesIcon,
|
|
7022
6706
|
DialogIcon,
|
|
7023
6707
|
DimensionsIcon,
|
|
7024
6708
|
DiscordIcon,
|
|
@@ -7059,11 +6743,6 @@ export {
|
|
|
7059
6743
|
JCSpaceAroundIcon,
|
|
7060
6744
|
JCSpaceBetweenIcon,
|
|
7061
6745
|
JCStartIcon,
|
|
7062
|
-
JustifyItemsCenterIcon,
|
|
7063
|
-
JustifyItemsEndIcon,
|
|
7064
|
-
JustifyItemsSpaceAroundIcon,
|
|
7065
|
-
JustifyItemsSpaceBetweenIcon,
|
|
7066
|
-
JustifyItemsStartIcon,
|
|
7067
6746
|
LabelIcon,
|
|
7068
6747
|
LargeXIcon,
|
|
7069
6748
|
Link2Icon,
|
|
@@ -7100,7 +6779,6 @@ export {
|
|
|
7100
6779
|
RadioCheckedIcon,
|
|
7101
6780
|
RadioDotIcon,
|
|
7102
6781
|
RadioUncheckedIcon,
|
|
7103
|
-
RedoIcon,
|
|
7104
6782
|
RefreshIcon,
|
|
7105
6783
|
RepeatColumnIcon,
|
|
7106
6784
|
RepeatGridIcon,
|
|
@@ -7109,6 +6787,7 @@ export {
|
|
|
7109
6787
|
ScrollIcon,
|
|
7110
6788
|
SectionLinkIcon,
|
|
7111
6789
|
SelectIcon,
|
|
6790
|
+
SettingsIcon,
|
|
7112
6791
|
ShadowInsetIcon,
|
|
7113
6792
|
ShadowNormalIcon,
|
|
7114
6793
|
ShrinkIcon,
|
|
@@ -7141,7 +6820,6 @@ export {
|
|
|
7141
6820
|
TooltipIcon,
|
|
7142
6821
|
TrashIcon,
|
|
7143
6822
|
TriggerIcon,
|
|
7144
|
-
UndoIcon,
|
|
7145
6823
|
UpgradeIcon,
|
|
7146
6824
|
UploadIcon,
|
|
7147
6825
|
VideoIcon,
|