@webstudio-is/icons 0.182.0 → 0.185.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/lib/index.js +133 -483
  2. package/lib/types/generate.d.ts +0 -1
  3. package/lib/types/src/__generated__/components.d.ts +199 -199
  4. package/lib/types/src/chevron-double-left.d.ts +2 -3
  5. package/lib/types/src/cross-circled-filled.d.ts +2 -3
  6. package/lib/types/src/cross-small.d.ts +2 -3
  7. package/lib/types/src/cross.d.ts +2 -3
  8. package/lib/types/src/gear.d.ts +3 -4
  9. package/lib/types/src/index.d.ts +0 -12
  10. package/lib/types/src/index.stories.d.ts +5 -17
  11. package/lib/types/src/magnifying-glass.d.ts +2 -3
  12. package/lib/types/src/new-folder.d.ts +2 -3
  13. package/lib/types/src/new-page.d.ts +2 -3
  14. package/lib/types/src/size.d.ts +2 -3
  15. package/lib/types/src/text-align-center.d.ts +2 -3
  16. package/lib/types/src/text-align-justify.d.ts +2 -3
  17. package/lib/types/src/text-align-right.d.ts +2 -3
  18. package/lib/types/src/text-capitalize.d.ts +2 -3
  19. package/lib/types/src/text-direction-ltr.d.ts +2 -3
  20. package/lib/types/src/text-direction-rtl.d.ts +2 -3
  21. package/lib/types/src/text-hyphen.d.ts +2 -3
  22. package/lib/types/src/text-lowercase.d.ts +2 -3
  23. package/lib/types/src/text-strikethrough.d.ts +2 -3
  24. package/lib/types/src/text-truncate.d.ts +2 -3
  25. package/lib/types/src/text-underline.d.ts +2 -3
  26. package/lib/types/src/text-uppercase.d.ts +2 -3
  27. package/lib/types/src/trash.d.ts +2 -3
  28. package/package.json +1 -1
  29. package/lib/types/src/chevron-double-down.d.ts +0 -3
  30. package/lib/types/src/chevron-double-right.d.ts +0 -3
  31. package/lib/types/src/chevron-double-up.d.ts +0 -3
  32. package/lib/types/src/cross-large.d.ts +0 -3
  33. package/lib/types/src/devices.d.ts +0 -3
  34. package/lib/types/src/justify-items-center.d.ts +0 -3
  35. package/lib/types/src/justify-items-end.d.ts +0 -3
  36. package/lib/types/src/justify-items-space-around.d.ts +0 -3
  37. package/lib/types/src/justify-items-space-between.d.ts +0 -3
  38. package/lib/types/src/justify-items-start.d.ts +0 -3
  39. package/lib/types/src/redo.d.ts +0 -3
  40. package/lib/types/src/twitter.d.ts +0 -2
  41. package/lib/types/src/undo.d.ts +0 -3
package/lib/index.js CHANGED
@@ -5832,233 +5832,12 @@ var ZAxisIcon = forwardRef(
5832
5832
  );
5833
5833
  ZAxisIcon.displayName = "ZAxisIcon";
5834
5834
 
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
5835
  // src/trash.tsx
6057
- import * as React9 from "react";
6058
- import { jsx as jsx10 } from "react/jsx-runtime";
6059
- var TrashIcon = React9.forwardRef(
5836
+ import * as React from "react";
5837
+ import { jsx as jsx2 } from "react/jsx-runtime";
5838
+ var TrashIcon = React.forwardRef(
6060
5839
  ({ color = "currentColor", ...props }, forwardedRef) => {
6061
- return /* @__PURE__ */ jsx10(
5840
+ return /* @__PURE__ */ jsx2(
6062
5841
  "svg",
6063
5842
  {
6064
5843
  width: "16",
@@ -6068,7 +5847,7 @@ var TrashIcon = React9.forwardRef(
6068
5847
  xmlns: "http://www.w3.org/2000/svg",
6069
5848
  ...props,
6070
5849
  ref: forwardedRef,
6071
- children: /* @__PURE__ */ jsx10(
5850
+ children: /* @__PURE__ */ jsx2(
6072
5851
  "path",
6073
5852
  {
6074
5853
  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 +5864,11 @@ var TrashIcon = React9.forwardRef(
6085
5864
  TrashIcon.displayName = "TrashIcon";
6086
5865
 
6087
5866
  // src/size.tsx
6088
- import * as React10 from "react";
6089
- import { jsx as jsx11 } from "react/jsx-runtime";
6090
- var SizeIcon = React10.forwardRef(
5867
+ import * as React2 from "react";
5868
+ import { jsx as jsx3 } from "react/jsx-runtime";
5869
+ var SizeIcon = React2.forwardRef(
6091
5870
  ({ color = "currentColor", ...props }, forwardedRef) => {
6092
- return /* @__PURE__ */ jsx11(
5871
+ return /* @__PURE__ */ jsx3(
6093
5872
  "svg",
6094
5873
  {
6095
5874
  width: 16,
@@ -6099,7 +5878,7 @@ var SizeIcon = React10.forwardRef(
6099
5878
  xmlns: "http://www.w3.org/2000/svg",
6100
5879
  ...props,
6101
5880
  ref: forwardedRef,
6102
- children: /* @__PURE__ */ jsx11(
5881
+ children: /* @__PURE__ */ jsx3(
6103
5882
  "path",
6104
5883
  {
6105
5884
  fillRule: "evenodd",
@@ -6115,15 +5894,17 @@ var SizeIcon = React10.forwardRef(
6115
5894
  SizeIcon.displayName = "SizeIcon";
6116
5895
 
6117
5896
  // src/gear.tsx
6118
- import * as React11 from "react";
6119
- import { jsx as jsx12, jsxs as jsxs7 } from "react/jsx-runtime";
5897
+ import * as React3 from "react";
5898
+ import { jsx as jsx4, jsxs as jsxs2 } from "react/jsx-runtime";
6120
5899
  var fillVar = "--ws-gear-icon-fill";
6121
- var gearIconCssVars = ({ fill }) => ({
5900
+ var gearIconCssVars = ({
5901
+ fill
5902
+ }) => ({
6122
5903
  [fillVar]: fill
6123
5904
  });
6124
- var GearIcon = React11.forwardRef(
5905
+ var GearIcon = React3.forwardRef(
6125
5906
  ({ color = "currentColor", ...props }, forwardedRef) => {
6126
- return /* @__PURE__ */ jsxs7(
5907
+ return /* @__PURE__ */ jsxs2(
6127
5908
  "svg",
6128
5909
  {
6129
5910
  width: 16,
@@ -6134,7 +5915,7 @@ var GearIcon = React11.forwardRef(
6134
5915
  ...props,
6135
5916
  ref: forwardedRef,
6136
5917
  children: [
6137
- /* @__PURE__ */ jsx12(
5918
+ /* @__PURE__ */ jsx4(
6138
5919
  "path",
6139
5920
  {
6140
5921
  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 +5926,7 @@ var GearIcon = React11.forwardRef(
6145
5926
  style: { fill: `var(${fillVar}, "none")` }
6146
5927
  }
6147
5928
  ),
6148
- /* @__PURE__ */ jsx12(
5929
+ /* @__PURE__ */ jsx4(
6149
5930
  "circle",
6150
5931
  {
6151
5932
  cx: 8,
@@ -6163,11 +5944,11 @@ var GearIcon = React11.forwardRef(
6163
5944
  GearIcon.displayName = "GearIcon";
6164
5945
 
6165
5946
  // src/new-page.tsx
6166
- import * as React12 from "react";
6167
- import { jsx as jsx13 } from "react/jsx-runtime";
6168
- var NewPageIcon = React12.forwardRef(
5947
+ import * as React4 from "react";
5948
+ import { jsx as jsx5 } from "react/jsx-runtime";
5949
+ var NewPageIcon = React4.forwardRef(
6169
5950
  ({ color = "currentColor", ...props }, forwardedRef) => {
6170
- return /* @__PURE__ */ jsx13(
5951
+ return /* @__PURE__ */ jsx5(
6171
5952
  "svg",
6172
5953
  {
6173
5954
  width: "16",
@@ -6177,7 +5958,7 @@ var NewPageIcon = React12.forwardRef(
6177
5958
  xmlns: "http://www.w3.org/2000/svg",
6178
5959
  ...props,
6179
5960
  ref: forwardedRef,
6180
- children: /* @__PURE__ */ jsx13(
5961
+ children: /* @__PURE__ */ jsx5(
6181
5962
  "path",
6182
5963
  {
6183
5964
  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 +5975,11 @@ var NewPageIcon = React12.forwardRef(
6194
5975
  NewPageIcon.displayName = "NewPageIcon";
6195
5976
 
6196
5977
  // src/new-folder.tsx
6197
- import * as React13 from "react";
6198
- import { jsx as jsx14 } from "react/jsx-runtime";
6199
- var NewFolderIcon = React13.forwardRef(
5978
+ import * as React5 from "react";
5979
+ import { jsx as jsx6 } from "react/jsx-runtime";
5980
+ var NewFolderIcon = React5.forwardRef(
6200
5981
  ({ color = "currentColor", ...props }, forwardedRef) => {
6201
- return /* @__PURE__ */ jsx14(
5982
+ return /* @__PURE__ */ jsx6(
6202
5983
  "svg",
6203
5984
  {
6204
5985
  width: "16",
@@ -6208,7 +5989,7 @@ var NewFolderIcon = React13.forwardRef(
6208
5989
  xmlns: "http://www.w3.org/2000/svg",
6209
5990
  ...props,
6210
5991
  ref: forwardedRef,
6211
- children: /* @__PURE__ */ jsx14(
5992
+ children: /* @__PURE__ */ jsx6(
6212
5993
  "path",
6213
5994
  {
6214
5995
  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 +6005,12 @@ var NewFolderIcon = React13.forwardRef(
6224
6005
  );
6225
6006
  NewFolderIcon.displayName = "NewFolderIcon";
6226
6007
 
6227
- // src/chevron-double-up.tsx
6228
- import * as React14 from "react";
6229
- import { jsx as jsx15 } from "react/jsx-runtime";
6230
- var ChevronDoubleUpIcon = React14.forwardRef(
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(
6008
+ // src/chevron-double-left.tsx
6009
+ import * as React6 from "react";
6010
+ import { jsx as jsx7 } from "react/jsx-runtime";
6011
+ var ChevronDoubleLeftIcon = React6.forwardRef(
6262
6012
  ({ color = "currentColor", ...props }, forwardedRef) => {
6263
- return /* @__PURE__ */ jsx16(
6013
+ return /* @__PURE__ */ jsx7(
6264
6014
  "svg",
6265
6015
  {
6266
6016
  width: "16",
@@ -6270,10 +6020,10 @@ var ChevronDoubleDownIcon = React15.forwardRef(
6270
6020
  xmlns: "http://www.w3.org/2000/svg",
6271
6021
  ...props,
6272
6022
  ref: forwardedRef,
6273
- children: /* @__PURE__ */ jsx16(
6023
+ children: /* @__PURE__ */ jsx7(
6274
6024
  "path",
6275
6025
  {
6276
- d: "M13 2L8 7L3 2M13 9L8 14L3 9",
6026
+ d: "M14 13L9 8L14 3M7 13L2 8L7 3",
6277
6027
  stroke: color,
6278
6028
  strokeWidth: "1.3",
6279
6029
  strokeLinecap: "round",
@@ -6284,14 +6034,14 @@ var ChevronDoubleDownIcon = React15.forwardRef(
6284
6034
  );
6285
6035
  }
6286
6036
  );
6287
- ChevronDoubleDownIcon.displayName = "ChevronDoubleDownIcon";
6037
+ ChevronDoubleLeftIcon.displayName = "ChevronDoubleLeftIcon";
6288
6038
 
6289
- // src/chevron-double-left.tsx
6290
- import * as React16 from "react";
6291
- import { jsx as jsx17 } from "react/jsx-runtime";
6292
- var ChevronDoubleLeftIcon = React16.forwardRef(
6039
+ // src/cross-circled-filled.tsx
6040
+ import * as React7 from "react";
6041
+ import { jsx as jsx8 } from "react/jsx-runtime";
6042
+ var CrossCircledFilledIcon = React7.forwardRef(
6293
6043
  ({ color = "currentColor", ...props }, forwardedRef) => {
6294
- return /* @__PURE__ */ jsx17(
6044
+ return /* @__PURE__ */ jsx8(
6295
6045
  "svg",
6296
6046
  {
6297
6047
  width: "16",
@@ -6301,85 +6051,27 @@ var ChevronDoubleLeftIcon = React16.forwardRef(
6301
6051
  xmlns: "http://www.w3.org/2000/svg",
6302
6052
  ...props,
6303
6053
  ref: forwardedRef,
6304
- children: /* @__PURE__ */ jsx17(
6054
+ children: /* @__PURE__ */ jsx8(
6305
6055
  "path",
6306
6056
  {
6307
- d: "M14 13L9 8L14 3M7 13L2 8L7 3",
6308
- stroke: color,
6309
- strokeWidth: "1.3",
6310
- strokeLinecap: "round",
6311
- strokeLinejoin: "round"
6057
+ fillRule: "evenodd",
6058
+ clipRule: "evenodd",
6059
+ 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",
6060
+ fill: color
6312
6061
  }
6313
6062
  )
6314
6063
  }
6315
6064
  );
6316
6065
  }
6317
6066
  );
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
6067
  CrossCircledFilledIcon.displayName = "CrossCircledFilled";
6376
6068
 
6377
6069
  // src/cross.tsx
6378
- import * as React19 from "react";
6379
- import { jsx as jsx20 } from "react/jsx-runtime";
6380
- var CrossIcon = React19.forwardRef(
6070
+ import * as React8 from "react";
6071
+ import { jsx as jsx9 } from "react/jsx-runtime";
6072
+ var CrossIcon = React8.forwardRef(
6381
6073
  ({ color = "currentColor", ...props }, forwardedRef) => {
6382
- return /* @__PURE__ */ jsx20(
6074
+ return /* @__PURE__ */ jsx9(
6383
6075
  "svg",
6384
6076
  {
6385
6077
  width: "16",
@@ -6389,7 +6081,7 @@ var CrossIcon = React19.forwardRef(
6389
6081
  xmlns: "http://www.w3.org/2000/svg",
6390
6082
  ...props,
6391
6083
  ref: forwardedRef,
6392
- children: /* @__PURE__ */ jsx20(
6084
+ children: /* @__PURE__ */ jsx9(
6393
6085
  "path",
6394
6086
  {
6395
6087
  d: "M13 3L7.99998 8.00002M7.99998 8.00002L3 13M7.99998 8.00002L3 3.00008M7.99998 8.00002L13 13",
@@ -6405,11 +6097,11 @@ var CrossIcon = React19.forwardRef(
6405
6097
  CrossIcon.displayName = "Cross";
6406
6098
 
6407
6099
  // src/magnifying-glass.tsx
6408
- import * as React20 from "react";
6409
- import { jsx as jsx21 } from "react/jsx-runtime";
6410
- var MagnifyingGlassIcon = React20.forwardRef(
6100
+ import * as React9 from "react";
6101
+ import { jsx as jsx10 } from "react/jsx-runtime";
6102
+ var MagnifyingGlassIcon = React9.forwardRef(
6411
6103
  ({ color = "currentColor", ...props }, forwardedRef) => {
6412
- return /* @__PURE__ */ jsx21(
6104
+ return /* @__PURE__ */ jsx10(
6413
6105
  "svg",
6414
6106
  {
6415
6107
  width: "16",
@@ -6419,7 +6111,7 @@ var MagnifyingGlassIcon = React20.forwardRef(
6419
6111
  xmlns: "http://www.w3.org/2000/svg",
6420
6112
  ...props,
6421
6113
  ref: forwardedRef,
6422
- children: /* @__PURE__ */ jsx21(
6114
+ children: /* @__PURE__ */ jsx10(
6423
6115
  "path",
6424
6116
  {
6425
6117
  fillRule: "evenodd",
@@ -6435,11 +6127,11 @@ var MagnifyingGlassIcon = React20.forwardRef(
6435
6127
  MagnifyingGlassIcon.displayName = "MagnifyingGlass";
6436
6128
 
6437
6129
  // src/cross-small.tsx
6438
- import * as React21 from "react";
6439
- import { jsx as jsx22 } from "react/jsx-runtime";
6440
- var CrossSmallIcon = React21.forwardRef(
6130
+ import * as React10 from "react";
6131
+ import { jsx as jsx11 } from "react/jsx-runtime";
6132
+ var CrossSmallIcon = React10.forwardRef(
6441
6133
  ({ color = "currentColor", ...props }, forwardedRef) => {
6442
- return /* @__PURE__ */ jsx22(
6134
+ return /* @__PURE__ */ jsx11(
6443
6135
  "svg",
6444
6136
  {
6445
6137
  xmlns: "http://www.w3.org/2000/svg",
@@ -6449,7 +6141,7 @@ var CrossSmallIcon = React21.forwardRef(
6449
6141
  height: "16",
6450
6142
  ...props,
6451
6143
  ref: forwardedRef,
6452
- children: /* @__PURE__ */ jsx22(
6144
+ children: /* @__PURE__ */ jsx11(
6453
6145
  "path",
6454
6146
  {
6455
6147
  stroke: color,
@@ -6464,42 +6156,12 @@ var CrossSmallIcon = React21.forwardRef(
6464
6156
  );
6465
6157
  CrossSmallIcon.displayName = "CrossSmallIcon";
6466
6158
 
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
6159
  // src/text-align-center.tsx
6498
- import * as React23 from "react";
6499
- import { jsx as jsx24, jsxs as jsxs8 } from "react/jsx-runtime";
6500
- var TextAlignCenterIcon = React23.forwardRef(
6160
+ import * as React11 from "react";
6161
+ import { jsx as jsx12, jsxs as jsxs3 } from "react/jsx-runtime";
6162
+ var TextAlignCenterIcon = React11.forwardRef(
6501
6163
  ({ color = "currentColor", ...props }, forwardedRef) => {
6502
- return /* @__PURE__ */ jsxs8(
6164
+ return /* @__PURE__ */ jsxs3(
6503
6165
  "svg",
6504
6166
  {
6505
6167
  width: "16",
@@ -6510,21 +6172,21 @@ var TextAlignCenterIcon = React23.forwardRef(
6510
6172
  ...props,
6511
6173
  ref: forwardedRef,
6512
6174
  children: [
6513
- /* @__PURE__ */ jsx24(
6175
+ /* @__PURE__ */ jsx12(
6514
6176
  "path",
6515
6177
  {
6516
6178
  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
6179
  fill: color
6518
6180
  }
6519
6181
  ),
6520
- /* @__PURE__ */ jsx24(
6182
+ /* @__PURE__ */ jsx12(
6521
6183
  "path",
6522
6184
  {
6523
6185
  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
6186
  fill: color
6525
6187
  }
6526
6188
  ),
6527
- /* @__PURE__ */ jsx24(
6189
+ /* @__PURE__ */ jsx12(
6528
6190
  "path",
6529
6191
  {
6530
6192
  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 +6201,11 @@ var TextAlignCenterIcon = React23.forwardRef(
6539
6201
  TextAlignCenterIcon.displayName = "TextAlignCenterIcon";
6540
6202
 
6541
6203
  // src/text-align-justify.tsx
6542
- import * as React24 from "react";
6543
- import { jsx as jsx25, jsxs as jsxs9 } from "react/jsx-runtime";
6544
- var TextAlignJustifyIcon = React24.forwardRef(
6204
+ import * as React12 from "react";
6205
+ import { jsx as jsx13, jsxs as jsxs4 } from "react/jsx-runtime";
6206
+ var TextAlignJustifyIcon = React12.forwardRef(
6545
6207
  ({ color = "currentColor", ...props }, forwardedRef) => {
6546
- return /* @__PURE__ */ jsxs9(
6208
+ return /* @__PURE__ */ jsxs4(
6547
6209
  "svg",
6548
6210
  {
6549
6211
  width: "16",
@@ -6554,21 +6216,21 @@ var TextAlignJustifyIcon = React24.forwardRef(
6554
6216
  ...props,
6555
6217
  ref: forwardedRef,
6556
6218
  children: [
6557
- /* @__PURE__ */ jsx25(
6219
+ /* @__PURE__ */ jsx13(
6558
6220
  "path",
6559
6221
  {
6560
6222
  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
6223
  fill: color
6562
6224
  }
6563
6225
  ),
6564
- /* @__PURE__ */ jsx25(
6226
+ /* @__PURE__ */ jsx13(
6565
6227
  "path",
6566
6228
  {
6567
6229
  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
6230
  fill: color
6569
6231
  }
6570
6232
  ),
6571
- /* @__PURE__ */ jsx25(
6233
+ /* @__PURE__ */ jsx13(
6572
6234
  "path",
6573
6235
  {
6574
6236
  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 +6245,11 @@ var TextAlignJustifyIcon = React24.forwardRef(
6583
6245
  TextAlignJustifyIcon.displayName = "TextAlignJustifyIcon";
6584
6246
 
6585
6247
  // src/text-align-right.tsx
6586
- import * as React25 from "react";
6587
- import { jsx as jsx26, jsxs as jsxs10 } from "react/jsx-runtime";
6588
- var TextAlignRightIcon = React25.forwardRef(
6248
+ import * as React13 from "react";
6249
+ import { jsx as jsx14, jsxs as jsxs5 } from "react/jsx-runtime";
6250
+ var TextAlignRightIcon = React13.forwardRef(
6589
6251
  ({ color = "currentColor", ...props }, forwardedRef) => {
6590
- return /* @__PURE__ */ jsxs10(
6252
+ return /* @__PURE__ */ jsxs5(
6591
6253
  "svg",
6592
6254
  {
6593
6255
  width: "16",
@@ -6598,21 +6260,21 @@ var TextAlignRightIcon = React25.forwardRef(
6598
6260
  ...props,
6599
6261
  ref: forwardedRef,
6600
6262
  children: [
6601
- /* @__PURE__ */ jsx26(
6263
+ /* @__PURE__ */ jsx14(
6602
6264
  "path",
6603
6265
  {
6604
6266
  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
6267
  fill: color
6606
6268
  }
6607
6269
  ),
6608
- /* @__PURE__ */ jsx26(
6270
+ /* @__PURE__ */ jsx14(
6609
6271
  "path",
6610
6272
  {
6611
6273
  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
6274
  fill: color
6613
6275
  }
6614
6276
  ),
6615
- /* @__PURE__ */ jsx26(
6277
+ /* @__PURE__ */ jsx14(
6616
6278
  "path",
6617
6279
  {
6618
6280
  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 +6289,11 @@ var TextAlignRightIcon = React25.forwardRef(
6627
6289
  TextAlignRightIcon.displayName = "TextAlignRightIcon";
6628
6290
 
6629
6291
  // src/text-capitalize.tsx
6630
- import * as React26 from "react";
6631
- import { jsx as jsx27 } from "react/jsx-runtime";
6632
- var TextCapitalizeIcon = React26.forwardRef(
6292
+ import * as React14 from "react";
6293
+ import { jsx as jsx15 } from "react/jsx-runtime";
6294
+ var TextCapitalizeIcon = React14.forwardRef(
6633
6295
  ({ color = "currentColor", ...props }, forwardedRef) => {
6634
- return /* @__PURE__ */ jsx27(
6296
+ return /* @__PURE__ */ jsx15(
6635
6297
  "svg",
6636
6298
  {
6637
6299
  width: "16",
@@ -6641,7 +6303,7 @@ var TextCapitalizeIcon = React26.forwardRef(
6641
6303
  xmlns: "http://www.w3.org/2000/svg",
6642
6304
  ...props,
6643
6305
  ref: forwardedRef,
6644
- children: /* @__PURE__ */ jsx27(
6306
+ children: /* @__PURE__ */ jsx15(
6645
6307
  "path",
6646
6308
  {
6647
6309
  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 +6317,11 @@ var TextCapitalizeIcon = React26.forwardRef(
6655
6317
  TextCapitalizeIcon.displayName = "TextCapitalizeIcon";
6656
6318
 
6657
6319
  // src/text-hyphen.tsx
6658
- import * as React27 from "react";
6659
- import { jsx as jsx28 } from "react/jsx-runtime";
6660
- var TextHyphenIcon = React27.forwardRef(
6320
+ import * as React15 from "react";
6321
+ import { jsx as jsx16 } from "react/jsx-runtime";
6322
+ var TextHyphenIcon = React15.forwardRef(
6661
6323
  ({ color = "currentColor", ...props }, forwardedRef) => {
6662
- return /* @__PURE__ */ jsx28(
6324
+ return /* @__PURE__ */ jsx16(
6663
6325
  "svg",
6664
6326
  {
6665
6327
  width: "16",
@@ -6669,7 +6331,7 @@ var TextHyphenIcon = React27.forwardRef(
6669
6331
  xmlns: "http://www.w3.org/2000/svg",
6670
6332
  ...props,
6671
6333
  ref: forwardedRef,
6672
- children: /* @__PURE__ */ jsx28(
6334
+ children: /* @__PURE__ */ jsx16(
6673
6335
  "path",
6674
6336
  {
6675
6337
  fillRule: "evenodd",
@@ -6685,11 +6347,11 @@ var TextHyphenIcon = React27.forwardRef(
6685
6347
  TextHyphenIcon.displayName = "TextHyphenIcon";
6686
6348
 
6687
6349
  // src/text-lowercase.tsx
6688
- import * as React28 from "react";
6689
- import { jsx as jsx29 } from "react/jsx-runtime";
6690
- var TextLowercaseIcon = React28.forwardRef(
6350
+ import * as React16 from "react";
6351
+ import { jsx as jsx17 } from "react/jsx-runtime";
6352
+ var TextLowercaseIcon = React16.forwardRef(
6691
6353
  ({ color = "currentColor", ...props }, forwardedRef) => {
6692
- return /* @__PURE__ */ jsx29(
6354
+ return /* @__PURE__ */ jsx17(
6693
6355
  "svg",
6694
6356
  {
6695
6357
  width: "16",
@@ -6699,7 +6361,7 @@ var TextLowercaseIcon = React28.forwardRef(
6699
6361
  xmlns: "http://www.w3.org/2000/svg",
6700
6362
  ...props,
6701
6363
  ref: forwardedRef,
6702
- children: /* @__PURE__ */ jsx29(
6364
+ children: /* @__PURE__ */ jsx17(
6703
6365
  "path",
6704
6366
  {
6705
6367
  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 +6375,11 @@ var TextLowercaseIcon = React28.forwardRef(
6713
6375
  TextLowercaseIcon.displayName = "TextLowercaseIcon";
6714
6376
 
6715
6377
  // src/text-strikethrough.tsx
6716
- import * as React29 from "react";
6717
- import { jsx as jsx30, jsxs as jsxs11 } from "react/jsx-runtime";
6718
- var TextStrikethroughIcon = React29.forwardRef(
6378
+ import * as React17 from "react";
6379
+ import { jsx as jsx18, jsxs as jsxs6 } from "react/jsx-runtime";
6380
+ var TextStrikethroughIcon = React17.forwardRef(
6719
6381
  ({ color = "currentColor", ...props }, forwardedRef) => {
6720
- return /* @__PURE__ */ jsxs11(
6382
+ return /* @__PURE__ */ jsxs6(
6721
6383
  "svg",
6722
6384
  {
6723
6385
  width: "16",
@@ -6728,21 +6390,21 @@ var TextStrikethroughIcon = React29.forwardRef(
6728
6390
  ...props,
6729
6391
  ref: forwardedRef,
6730
6392
  children: [
6731
- /* @__PURE__ */ jsx30(
6393
+ /* @__PURE__ */ jsx18(
6732
6394
  "path",
6733
6395
  {
6734
6396
  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
6397
  fill: color
6736
6398
  }
6737
6399
  ),
6738
- /* @__PURE__ */ jsx30(
6400
+ /* @__PURE__ */ jsx18(
6739
6401
  "path",
6740
6402
  {
6741
6403
  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
6404
  fill: color
6743
6405
  }
6744
6406
  ),
6745
- /* @__PURE__ */ jsx30(
6407
+ /* @__PURE__ */ jsx18(
6746
6408
  "path",
6747
6409
  {
6748
6410
  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 +6419,11 @@ var TextStrikethroughIcon = React29.forwardRef(
6757
6419
  TextStrikethroughIcon.displayName = "TextStrikethroughIcon";
6758
6420
 
6759
6421
  // src/text-truncate.tsx
6760
- import * as React30 from "react";
6761
- import { jsx as jsx31, jsxs as jsxs12 } from "react/jsx-runtime";
6762
- var TextTruncateIcon = React30.forwardRef(
6422
+ import * as React18 from "react";
6423
+ import { jsx as jsx19, jsxs as jsxs7 } from "react/jsx-runtime";
6424
+ var TextTruncateIcon = React18.forwardRef(
6763
6425
  ({ color = "currentColor", ...props }, forwardedRef) => {
6764
- return /* @__PURE__ */ jsxs12(
6426
+ return /* @__PURE__ */ jsxs7(
6765
6427
  "svg",
6766
6428
  {
6767
6429
  width: "16",
@@ -6772,28 +6434,28 @@ var TextTruncateIcon = React30.forwardRef(
6772
6434
  ...props,
6773
6435
  ref: forwardedRef,
6774
6436
  children: [
6775
- /* @__PURE__ */ jsx31(
6437
+ /* @__PURE__ */ jsx19(
6776
6438
  "path",
6777
6439
  {
6778
6440
  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
6441
  fill: color
6780
6442
  }
6781
6443
  ),
6782
- /* @__PURE__ */ jsx31(
6444
+ /* @__PURE__ */ jsx19(
6783
6445
  "path",
6784
6446
  {
6785
6447
  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
6448
  fill: color
6787
6449
  }
6788
6450
  ),
6789
- /* @__PURE__ */ jsx31(
6451
+ /* @__PURE__ */ jsx19(
6790
6452
  "path",
6791
6453
  {
6792
6454
  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
6455
  fill: color
6794
6456
  }
6795
6457
  ),
6796
- /* @__PURE__ */ jsx31(
6458
+ /* @__PURE__ */ jsx19(
6797
6459
  "path",
6798
6460
  {
6799
6461
  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 +6470,11 @@ var TextTruncateIcon = React30.forwardRef(
6808
6470
  TextTruncateIcon.displayName = "TextTruncateIcon";
6809
6471
 
6810
6472
  // src/text-underline.tsx
6811
- import * as React31 from "react";
6812
- import { jsx as jsx32 } from "react/jsx-runtime";
6813
- var TextUnderlineIcon = React31.forwardRef(
6473
+ import * as React19 from "react";
6474
+ import { jsx as jsx20 } from "react/jsx-runtime";
6475
+ var TextUnderlineIcon = React19.forwardRef(
6814
6476
  ({ color = "currentColor", ...props }, forwardedRef) => {
6815
- return /* @__PURE__ */ jsx32(
6477
+ return /* @__PURE__ */ jsx20(
6816
6478
  "svg",
6817
6479
  {
6818
6480
  width: "16",
@@ -6822,7 +6484,7 @@ var TextUnderlineIcon = React31.forwardRef(
6822
6484
  xmlns: "http://www.w3.org/2000/svg",
6823
6485
  ...props,
6824
6486
  ref: forwardedRef,
6825
- children: /* @__PURE__ */ jsx32(
6487
+ children: /* @__PURE__ */ jsx20(
6826
6488
  "path",
6827
6489
  {
6828
6490
  fillRule: "evenodd",
@@ -6838,11 +6500,11 @@ var TextUnderlineIcon = React31.forwardRef(
6838
6500
  TextUnderlineIcon.displayName = "TextUnderlineIcon";
6839
6501
 
6840
6502
  // src/text-uppercase.tsx
6841
- import * as React32 from "react";
6842
- import { jsx as jsx33 } from "react/jsx-runtime";
6843
- var TextUppercaseIcon = React32.forwardRef(
6503
+ import * as React20 from "react";
6504
+ import { jsx as jsx21 } from "react/jsx-runtime";
6505
+ var TextUppercaseIcon = React20.forwardRef(
6844
6506
  ({ color = "currentColor", ...props }, forwardedRef) => {
6845
- return /* @__PURE__ */ jsx33(
6507
+ return /* @__PURE__ */ jsx21(
6846
6508
  "svg",
6847
6509
  {
6848
6510
  width: "16",
@@ -6852,7 +6514,7 @@ var TextUppercaseIcon = React32.forwardRef(
6852
6514
  xmlns: "http://www.w3.org/2000/svg",
6853
6515
  ...props,
6854
6516
  ref: forwardedRef,
6855
- children: /* @__PURE__ */ jsx33(
6517
+ children: /* @__PURE__ */ jsx21(
6856
6518
  "path",
6857
6519
  {
6858
6520
  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 +6531,11 @@ var TextUppercaseIcon = React32.forwardRef(
6869
6531
  TextUppercaseIcon.displayName = "TextUppercaseIcon";
6870
6532
 
6871
6533
  // src/text-direction-ltr.tsx
6872
- import * as React33 from "react";
6873
- import { jsx as jsx34 } from "react/jsx-runtime";
6874
- var TextDirectionLTRIcon = React33.forwardRef(
6534
+ import * as React21 from "react";
6535
+ import { jsx as jsx22 } from "react/jsx-runtime";
6536
+ var TextDirectionLTRIcon = React21.forwardRef(
6875
6537
  ({ color = "currentColor", ...props }, forwardedRef) => {
6876
- return /* @__PURE__ */ jsx34(
6538
+ return /* @__PURE__ */ jsx22(
6877
6539
  "svg",
6878
6540
  {
6879
6541
  width: "16",
@@ -6883,7 +6545,7 @@ var TextDirectionLTRIcon = React33.forwardRef(
6883
6545
  xmlns: "http://www.w3.org/2000/svg",
6884
6546
  ...props,
6885
6547
  ref: forwardedRef,
6886
- children: /* @__PURE__ */ jsx34(
6548
+ children: /* @__PURE__ */ jsx22(
6887
6549
  "path",
6888
6550
  {
6889
6551
  fillRule: "evenodd",
@@ -6899,11 +6561,11 @@ var TextDirectionLTRIcon = React33.forwardRef(
6899
6561
  TextDirectionLTRIcon.displayName = "TextDirectionLTRIcon";
6900
6562
 
6901
6563
  // src/text-direction-rtl.tsx
6902
- import * as React34 from "react";
6903
- import { jsx as jsx35 } from "react/jsx-runtime";
6904
- var TextDirectionRTLIcon = React34.forwardRef(
6564
+ import * as React22 from "react";
6565
+ import { jsx as jsx23 } from "react/jsx-runtime";
6566
+ var TextDirectionRTLIcon = React22.forwardRef(
6905
6567
  ({ color = "currentColor", ...props }, forwardedRef) => {
6906
- return /* @__PURE__ */ jsx35(
6568
+ return /* @__PURE__ */ jsx23(
6907
6569
  "svg",
6908
6570
  {
6909
6571
  width: "16",
@@ -6913,7 +6575,7 @@ var TextDirectionRTLIcon = React34.forwardRef(
6913
6575
  xmlns: "http://www.w3.org/2000/svg",
6914
6576
  ...props,
6915
6577
  ref: forwardedRef,
6916
- children: /* @__PURE__ */ jsx35(
6578
+ children: /* @__PURE__ */ jsx23(
6917
6579
  "path",
6918
6580
  {
6919
6581
  fillRule: "evenodd",
@@ -6989,10 +6651,7 @@ export {
6989
6651
  ChevronBigLeftIcon,
6990
6652
  ChevronBigRightIcon,
6991
6653
  ChevronBigUpIcon,
6992
- ChevronDoubleDownIcon,
6993
6654
  ChevronDoubleLeftIcon,
6994
- ChevronDoubleRightIcon,
6995
- ChevronDoubleUpIcon,
6996
6655
  ChevronDownIcon,
6997
6656
  ChevronFilledDownIcon,
6998
6657
  ChevronFilledLeftIcon,
@@ -7010,7 +6669,6 @@ export {
7010
6669
  CopyIcon,
7011
6670
  CrossCircledFilledIcon,
7012
6671
  CrossIcon,
7013
- CrossLargeIcon,
7014
6672
  CrossSmallIcon,
7015
6673
  CustomCodeIcon,
7016
6674
  DashBorderIcon,
@@ -7018,7 +6676,6 @@ export {
7018
6676
  DashedBorderIcon,
7019
6677
  DeleteIcon,
7020
6678
  DescriptionIcon,
7021
- DevicesIcon,
7022
6679
  DialogIcon,
7023
6680
  DimensionsIcon,
7024
6681
  DiscordIcon,
@@ -7059,11 +6716,6 @@ export {
7059
6716
  JCSpaceAroundIcon,
7060
6717
  JCSpaceBetweenIcon,
7061
6718
  JCStartIcon,
7062
- JustifyItemsCenterIcon,
7063
- JustifyItemsEndIcon,
7064
- JustifyItemsSpaceAroundIcon,
7065
- JustifyItemsSpaceBetweenIcon,
7066
- JustifyItemsStartIcon,
7067
6719
  LabelIcon,
7068
6720
  LargeXIcon,
7069
6721
  Link2Icon,
@@ -7100,7 +6752,6 @@ export {
7100
6752
  RadioCheckedIcon,
7101
6753
  RadioDotIcon,
7102
6754
  RadioUncheckedIcon,
7103
- RedoIcon,
7104
6755
  RefreshIcon,
7105
6756
  RepeatColumnIcon,
7106
6757
  RepeatGridIcon,
@@ -7141,7 +6792,6 @@ export {
7141
6792
  TooltipIcon,
7142
6793
  TrashIcon,
7143
6794
  TriggerIcon,
7144
- UndoIcon,
7145
6795
  UpgradeIcon,
7146
6796
  UploadIcon,
7147
6797
  VideoIcon,