@webstudio-is/icons 0.132.0 → 0.133.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/index.js +89 -134
- package/lib/types/src/ellipses.d.ts +3 -1
- package/lib/types/src/index.d.ts +0 -1
- package/package.json +1 -1
- package/lib/types/src/menu.d.ts +0 -3
package/lib/index.js
CHANGED
|
@@ -2742,56 +2742,12 @@ var MagnifyingGlassIcon = React22.forwardRef(
|
|
|
2742
2742
|
);
|
|
2743
2743
|
MagnifyingGlassIcon.displayName = "MagnifyingGlass";
|
|
2744
2744
|
|
|
2745
|
-
// src/menu.tsx
|
|
2746
|
-
import * as React23 from "react";
|
|
2747
|
-
import { jsx as jsx198, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
2748
|
-
var MenuIcon = React23.forwardRef(
|
|
2749
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
2750
|
-
return /* @__PURE__ */ jsxs74(
|
|
2751
|
-
"svg",
|
|
2752
|
-
{
|
|
2753
|
-
width: "16",
|
|
2754
|
-
height: "16",
|
|
2755
|
-
viewBox: "0 0 16 16",
|
|
2756
|
-
fill: "none",
|
|
2757
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
2758
|
-
...props,
|
|
2759
|
-
ref: forwardedRef,
|
|
2760
|
-
children: [
|
|
2761
|
-
/* @__PURE__ */ jsx198(
|
|
2762
|
-
"path",
|
|
2763
|
-
{
|
|
2764
|
-
d: "M4 8C4 8.82843 3.32843 9.5 2.5 9.5C1.67157 9.5 1 8.82843 1 8C1 7.17157 1.67157 6.5 2.5 6.5C3.32843 6.5 4 7.17157 4 8Z",
|
|
2765
|
-
fill: color
|
|
2766
|
-
}
|
|
2767
|
-
),
|
|
2768
|
-
/* @__PURE__ */ jsx198(
|
|
2769
|
-
"path",
|
|
2770
|
-
{
|
|
2771
|
-
d: "M9.5 8C9.5 8.82843 8.82843 9.5 8 9.5C7.17157 9.5 6.5 8.82843 6.5 8C6.5 7.17157 7.17157 6.5 8 6.5C8.82843 6.5 9.5 7.17157 9.5 8Z",
|
|
2772
|
-
fill: color
|
|
2773
|
-
}
|
|
2774
|
-
),
|
|
2775
|
-
/* @__PURE__ */ jsx198(
|
|
2776
|
-
"path",
|
|
2777
|
-
{
|
|
2778
|
-
d: "M15 8C15 8.82843 14.3284 9.5 13.5 9.5C12.6716 9.5 12 8.82843 12 8C12 7.17157 12.6716 6.5 13.5 6.5C14.3284 6.5 15 7.17157 15 8Z",
|
|
2779
|
-
fill: color
|
|
2780
|
-
}
|
|
2781
|
-
)
|
|
2782
|
-
]
|
|
2783
|
-
}
|
|
2784
|
-
);
|
|
2785
|
-
}
|
|
2786
|
-
);
|
|
2787
|
-
MenuIcon.displayName = "MenuIcon";
|
|
2788
|
-
|
|
2789
2745
|
// src/cross-small.tsx
|
|
2790
|
-
import * as
|
|
2791
|
-
import { jsx as
|
|
2792
|
-
var CrossSmallIcon =
|
|
2746
|
+
import * as React23 from "react";
|
|
2747
|
+
import { jsx as jsx198 } from "react/jsx-runtime";
|
|
2748
|
+
var CrossSmallIcon = React23.forwardRef(
|
|
2793
2749
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
2794
|
-
return /* @__PURE__ */
|
|
2750
|
+
return /* @__PURE__ */ jsx198(
|
|
2795
2751
|
"svg",
|
|
2796
2752
|
{
|
|
2797
2753
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2801,7 +2757,7 @@ var CrossSmallIcon = React24.forwardRef(
|
|
|
2801
2757
|
height: "16",
|
|
2802
2758
|
...props,
|
|
2803
2759
|
ref: forwardedRef,
|
|
2804
|
-
children: /* @__PURE__ */
|
|
2760
|
+
children: /* @__PURE__ */ jsx198(
|
|
2805
2761
|
"path",
|
|
2806
2762
|
{
|
|
2807
2763
|
stroke: color,
|
|
@@ -2817,11 +2773,11 @@ var CrossSmallIcon = React24.forwardRef(
|
|
|
2817
2773
|
CrossSmallIcon.displayName = "CrossSmallIcon";
|
|
2818
2774
|
|
|
2819
2775
|
// src/cross-large.tsx
|
|
2820
|
-
import * as
|
|
2821
|
-
import { jsx as
|
|
2822
|
-
var CrossLargeIcon =
|
|
2776
|
+
import * as React24 from "react";
|
|
2777
|
+
import { jsx as jsx199 } from "react/jsx-runtime";
|
|
2778
|
+
var CrossLargeIcon = React24.forwardRef(
|
|
2823
2779
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
2824
|
-
return /* @__PURE__ */
|
|
2780
|
+
return /* @__PURE__ */ jsx199(
|
|
2825
2781
|
"svg",
|
|
2826
2782
|
{
|
|
2827
2783
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2831,7 +2787,7 @@ var CrossLargeIcon = React25.forwardRef(
|
|
|
2831
2787
|
height: "16",
|
|
2832
2788
|
...props,
|
|
2833
2789
|
ref: forwardedRef,
|
|
2834
|
-
children: /* @__PURE__ */
|
|
2790
|
+
children: /* @__PURE__ */ jsx199(
|
|
2835
2791
|
"path",
|
|
2836
2792
|
{
|
|
2837
2793
|
stroke: color,
|
|
@@ -2847,11 +2803,11 @@ var CrossLargeIcon = React25.forwardRef(
|
|
|
2847
2803
|
CrossLargeIcon.displayName = "CrossLargeIcon";
|
|
2848
2804
|
|
|
2849
2805
|
// src/ellipses.tsx
|
|
2850
|
-
import * as
|
|
2851
|
-
import { jsx as
|
|
2852
|
-
var EllipsesIcon =
|
|
2853
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
2854
|
-
return /* @__PURE__ */
|
|
2806
|
+
import * as React25 from "react";
|
|
2807
|
+
import { jsx as jsx200, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
2808
|
+
var EllipsesIcon = React25.forwardRef(
|
|
2809
|
+
({ color = "currentColor", colors = [], ...props }, forwardedRef) => {
|
|
2810
|
+
return /* @__PURE__ */ jsxs74(
|
|
2855
2811
|
"svg",
|
|
2856
2812
|
{
|
|
2857
2813
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2862,9 +2818,9 @@ var EllipsesIcon = React26.forwardRef(
|
|
|
2862
2818
|
...props,
|
|
2863
2819
|
ref: forwardedRef,
|
|
2864
2820
|
children: [
|
|
2865
|
-
/* @__PURE__ */
|
|
2866
|
-
/* @__PURE__ */
|
|
2867
|
-
/* @__PURE__ */
|
|
2821
|
+
/* @__PURE__ */ jsx200("circle", { cx: "2.3", cy: "8", r: "1.8", fill: colors[0] ?? color }),
|
|
2822
|
+
/* @__PURE__ */ jsx200("circle", { cx: "8", cy: "8", r: "1.8", fill: colors[1] ?? color }),
|
|
2823
|
+
/* @__PURE__ */ jsx200("circle", { cx: "14", cy: "8", r: "1.8", fill: colors[2] ?? color })
|
|
2868
2824
|
]
|
|
2869
2825
|
}
|
|
2870
2826
|
);
|
|
@@ -2873,11 +2829,11 @@ var EllipsesIcon = React26.forwardRef(
|
|
|
2873
2829
|
EllipsesIcon.displayName = "EllipsesIcon";
|
|
2874
2830
|
|
|
2875
2831
|
// src/text-align-center.tsx
|
|
2876
|
-
import * as
|
|
2877
|
-
import { jsx as
|
|
2878
|
-
var TextAlignCenterIcon =
|
|
2832
|
+
import * as React26 from "react";
|
|
2833
|
+
import { jsx as jsx201, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
2834
|
+
var TextAlignCenterIcon = React26.forwardRef(
|
|
2879
2835
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
2880
|
-
return /* @__PURE__ */
|
|
2836
|
+
return /* @__PURE__ */ jsxs75(
|
|
2881
2837
|
"svg",
|
|
2882
2838
|
{
|
|
2883
2839
|
width: "16",
|
|
@@ -2888,21 +2844,21 @@ var TextAlignCenterIcon = React27.forwardRef(
|
|
|
2888
2844
|
...props,
|
|
2889
2845
|
ref: forwardedRef,
|
|
2890
2846
|
children: [
|
|
2891
|
-
/* @__PURE__ */
|
|
2847
|
+
/* @__PURE__ */ jsx201(
|
|
2892
2848
|
"path",
|
|
2893
2849
|
{
|
|
2894
2850
|
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",
|
|
2895
2851
|
fill: color
|
|
2896
2852
|
}
|
|
2897
2853
|
),
|
|
2898
|
-
/* @__PURE__ */
|
|
2854
|
+
/* @__PURE__ */ jsx201(
|
|
2899
2855
|
"path",
|
|
2900
2856
|
{
|
|
2901
2857
|
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",
|
|
2902
2858
|
fill: color
|
|
2903
2859
|
}
|
|
2904
2860
|
),
|
|
2905
|
-
/* @__PURE__ */
|
|
2861
|
+
/* @__PURE__ */ jsx201(
|
|
2906
2862
|
"path",
|
|
2907
2863
|
{
|
|
2908
2864
|
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",
|
|
@@ -2917,11 +2873,11 @@ var TextAlignCenterIcon = React27.forwardRef(
|
|
|
2917
2873
|
TextAlignCenterIcon.displayName = "TextAlignCenterIcon";
|
|
2918
2874
|
|
|
2919
2875
|
// src/text-align-justify.tsx
|
|
2920
|
-
import * as
|
|
2921
|
-
import { jsx as
|
|
2922
|
-
var TextAlignJustifyIcon =
|
|
2876
|
+
import * as React27 from "react";
|
|
2877
|
+
import { jsx as jsx202, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
2878
|
+
var TextAlignJustifyIcon = React27.forwardRef(
|
|
2923
2879
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
2924
|
-
return /* @__PURE__ */
|
|
2880
|
+
return /* @__PURE__ */ jsxs76(
|
|
2925
2881
|
"svg",
|
|
2926
2882
|
{
|
|
2927
2883
|
width: "16",
|
|
@@ -2932,21 +2888,21 @@ var TextAlignJustifyIcon = React28.forwardRef(
|
|
|
2932
2888
|
...props,
|
|
2933
2889
|
ref: forwardedRef,
|
|
2934
2890
|
children: [
|
|
2935
|
-
/* @__PURE__ */
|
|
2891
|
+
/* @__PURE__ */ jsx202(
|
|
2936
2892
|
"path",
|
|
2937
2893
|
{
|
|
2938
2894
|
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",
|
|
2939
2895
|
fill: color
|
|
2940
2896
|
}
|
|
2941
2897
|
),
|
|
2942
|
-
/* @__PURE__ */
|
|
2898
|
+
/* @__PURE__ */ jsx202(
|
|
2943
2899
|
"path",
|
|
2944
2900
|
{
|
|
2945
2901
|
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",
|
|
2946
2902
|
fill: color
|
|
2947
2903
|
}
|
|
2948
2904
|
),
|
|
2949
|
-
/* @__PURE__ */
|
|
2905
|
+
/* @__PURE__ */ jsx202(
|
|
2950
2906
|
"path",
|
|
2951
2907
|
{
|
|
2952
2908
|
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",
|
|
@@ -2961,11 +2917,11 @@ var TextAlignJustifyIcon = React28.forwardRef(
|
|
|
2961
2917
|
TextAlignJustifyIcon.displayName = "TextAlignJustifyIcon";
|
|
2962
2918
|
|
|
2963
2919
|
// src/text-align-right.tsx
|
|
2964
|
-
import * as
|
|
2965
|
-
import { jsx as
|
|
2966
|
-
var TextAlignRightIcon =
|
|
2920
|
+
import * as React28 from "react";
|
|
2921
|
+
import { jsx as jsx203, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
2922
|
+
var TextAlignRightIcon = React28.forwardRef(
|
|
2967
2923
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
2968
|
-
return /* @__PURE__ */
|
|
2924
|
+
return /* @__PURE__ */ jsxs77(
|
|
2969
2925
|
"svg",
|
|
2970
2926
|
{
|
|
2971
2927
|
width: "16",
|
|
@@ -2976,21 +2932,21 @@ var TextAlignRightIcon = React29.forwardRef(
|
|
|
2976
2932
|
...props,
|
|
2977
2933
|
ref: forwardedRef,
|
|
2978
2934
|
children: [
|
|
2979
|
-
/* @__PURE__ */
|
|
2935
|
+
/* @__PURE__ */ jsx203(
|
|
2980
2936
|
"path",
|
|
2981
2937
|
{
|
|
2982
2938
|
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",
|
|
2983
2939
|
fill: color
|
|
2984
2940
|
}
|
|
2985
2941
|
),
|
|
2986
|
-
/* @__PURE__ */
|
|
2942
|
+
/* @__PURE__ */ jsx203(
|
|
2987
2943
|
"path",
|
|
2988
2944
|
{
|
|
2989
2945
|
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",
|
|
2990
2946
|
fill: color
|
|
2991
2947
|
}
|
|
2992
2948
|
),
|
|
2993
|
-
/* @__PURE__ */
|
|
2949
|
+
/* @__PURE__ */ jsx203(
|
|
2994
2950
|
"path",
|
|
2995
2951
|
{
|
|
2996
2952
|
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",
|
|
@@ -3005,11 +2961,11 @@ var TextAlignRightIcon = React29.forwardRef(
|
|
|
3005
2961
|
TextAlignRightIcon.displayName = "TextAlignRightIcon";
|
|
3006
2962
|
|
|
3007
2963
|
// src/text-capitalize.tsx
|
|
3008
|
-
import * as
|
|
3009
|
-
import { jsx as
|
|
3010
|
-
var TextCapitalizeIcon =
|
|
2964
|
+
import * as React29 from "react";
|
|
2965
|
+
import { jsx as jsx204 } from "react/jsx-runtime";
|
|
2966
|
+
var TextCapitalizeIcon = React29.forwardRef(
|
|
3011
2967
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
3012
|
-
return /* @__PURE__ */
|
|
2968
|
+
return /* @__PURE__ */ jsx204(
|
|
3013
2969
|
"svg",
|
|
3014
2970
|
{
|
|
3015
2971
|
width: "16",
|
|
@@ -3019,7 +2975,7 @@ var TextCapitalizeIcon = React30.forwardRef(
|
|
|
3019
2975
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3020
2976
|
...props,
|
|
3021
2977
|
ref: forwardedRef,
|
|
3022
|
-
children: /* @__PURE__ */
|
|
2978
|
+
children: /* @__PURE__ */ jsx204(
|
|
3023
2979
|
"path",
|
|
3024
2980
|
{
|
|
3025
2981
|
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",
|
|
@@ -3033,11 +2989,11 @@ var TextCapitalizeIcon = React30.forwardRef(
|
|
|
3033
2989
|
TextCapitalizeIcon.displayName = "TextCapitalizeIcon";
|
|
3034
2990
|
|
|
3035
2991
|
// src/text-hyphen.tsx
|
|
3036
|
-
import * as
|
|
3037
|
-
import { jsx as
|
|
3038
|
-
var TextHyphenIcon =
|
|
2992
|
+
import * as React30 from "react";
|
|
2993
|
+
import { jsx as jsx205 } from "react/jsx-runtime";
|
|
2994
|
+
var TextHyphenIcon = React30.forwardRef(
|
|
3039
2995
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
3040
|
-
return /* @__PURE__ */
|
|
2996
|
+
return /* @__PURE__ */ jsx205(
|
|
3041
2997
|
"svg",
|
|
3042
2998
|
{
|
|
3043
2999
|
width: "16",
|
|
@@ -3047,7 +3003,7 @@ var TextHyphenIcon = React31.forwardRef(
|
|
|
3047
3003
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3048
3004
|
...props,
|
|
3049
3005
|
ref: forwardedRef,
|
|
3050
|
-
children: /* @__PURE__ */
|
|
3006
|
+
children: /* @__PURE__ */ jsx205(
|
|
3051
3007
|
"path",
|
|
3052
3008
|
{
|
|
3053
3009
|
fillRule: "evenodd",
|
|
@@ -3063,11 +3019,11 @@ var TextHyphenIcon = React31.forwardRef(
|
|
|
3063
3019
|
TextHyphenIcon.displayName = "TextHyphenIcon";
|
|
3064
3020
|
|
|
3065
3021
|
// src/text-lowercase.tsx
|
|
3066
|
-
import * as
|
|
3067
|
-
import { jsx as
|
|
3068
|
-
var TextLowercaseIcon =
|
|
3022
|
+
import * as React31 from "react";
|
|
3023
|
+
import { jsx as jsx206 } from "react/jsx-runtime";
|
|
3024
|
+
var TextLowercaseIcon = React31.forwardRef(
|
|
3069
3025
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
3070
|
-
return /* @__PURE__ */
|
|
3026
|
+
return /* @__PURE__ */ jsx206(
|
|
3071
3027
|
"svg",
|
|
3072
3028
|
{
|
|
3073
3029
|
width: "16",
|
|
@@ -3077,7 +3033,7 @@ var TextLowercaseIcon = React32.forwardRef(
|
|
|
3077
3033
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3078
3034
|
...props,
|
|
3079
3035
|
ref: forwardedRef,
|
|
3080
|
-
children: /* @__PURE__ */
|
|
3036
|
+
children: /* @__PURE__ */ jsx206(
|
|
3081
3037
|
"path",
|
|
3082
3038
|
{
|
|
3083
3039
|
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",
|
|
@@ -3091,11 +3047,11 @@ var TextLowercaseIcon = React32.forwardRef(
|
|
|
3091
3047
|
TextLowercaseIcon.displayName = "TextLowercaseIcon";
|
|
3092
3048
|
|
|
3093
3049
|
// src/text-strikethrough.tsx
|
|
3094
|
-
import * as
|
|
3095
|
-
import { jsx as
|
|
3096
|
-
var TextStrikethroughIcon =
|
|
3050
|
+
import * as React32 from "react";
|
|
3051
|
+
import { jsx as jsx207, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
3052
|
+
var TextStrikethroughIcon = React32.forwardRef(
|
|
3097
3053
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
3098
|
-
return /* @__PURE__ */
|
|
3054
|
+
return /* @__PURE__ */ jsxs78(
|
|
3099
3055
|
"svg",
|
|
3100
3056
|
{
|
|
3101
3057
|
width: "16",
|
|
@@ -3106,21 +3062,21 @@ var TextStrikethroughIcon = React33.forwardRef(
|
|
|
3106
3062
|
...props,
|
|
3107
3063
|
ref: forwardedRef,
|
|
3108
3064
|
children: [
|
|
3109
|
-
/* @__PURE__ */
|
|
3065
|
+
/* @__PURE__ */ jsx207(
|
|
3110
3066
|
"path",
|
|
3111
3067
|
{
|
|
3112
3068
|
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",
|
|
3113
3069
|
fill: color
|
|
3114
3070
|
}
|
|
3115
3071
|
),
|
|
3116
|
-
/* @__PURE__ */
|
|
3072
|
+
/* @__PURE__ */ jsx207(
|
|
3117
3073
|
"path",
|
|
3118
3074
|
{
|
|
3119
3075
|
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",
|
|
3120
3076
|
fill: color
|
|
3121
3077
|
}
|
|
3122
3078
|
),
|
|
3123
|
-
/* @__PURE__ */
|
|
3079
|
+
/* @__PURE__ */ jsx207(
|
|
3124
3080
|
"path",
|
|
3125
3081
|
{
|
|
3126
3082
|
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",
|
|
@@ -3135,11 +3091,11 @@ var TextStrikethroughIcon = React33.forwardRef(
|
|
|
3135
3091
|
TextStrikethroughIcon.displayName = "TextStrikethroughIcon";
|
|
3136
3092
|
|
|
3137
3093
|
// src/text-truncate.tsx
|
|
3138
|
-
import * as
|
|
3139
|
-
import { jsx as
|
|
3140
|
-
var TextTruncateIcon =
|
|
3094
|
+
import * as React33 from "react";
|
|
3095
|
+
import { jsx as jsx208, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
3096
|
+
var TextTruncateIcon = React33.forwardRef(
|
|
3141
3097
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
3142
|
-
return /* @__PURE__ */
|
|
3098
|
+
return /* @__PURE__ */ jsxs79(
|
|
3143
3099
|
"svg",
|
|
3144
3100
|
{
|
|
3145
3101
|
width: "16",
|
|
@@ -3150,28 +3106,28 @@ var TextTruncateIcon = React34.forwardRef(
|
|
|
3150
3106
|
...props,
|
|
3151
3107
|
ref: forwardedRef,
|
|
3152
3108
|
children: [
|
|
3153
|
-
/* @__PURE__ */
|
|
3109
|
+
/* @__PURE__ */ jsx208(
|
|
3154
3110
|
"path",
|
|
3155
3111
|
{
|
|
3156
3112
|
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",
|
|
3157
3113
|
fill: color
|
|
3158
3114
|
}
|
|
3159
3115
|
),
|
|
3160
|
-
/* @__PURE__ */
|
|
3116
|
+
/* @__PURE__ */ jsx208(
|
|
3161
3117
|
"path",
|
|
3162
3118
|
{
|
|
3163
3119
|
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",
|
|
3164
3120
|
fill: color
|
|
3165
3121
|
}
|
|
3166
3122
|
),
|
|
3167
|
-
/* @__PURE__ */
|
|
3123
|
+
/* @__PURE__ */ jsx208(
|
|
3168
3124
|
"path",
|
|
3169
3125
|
{
|
|
3170
3126
|
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",
|
|
3171
3127
|
fill: color
|
|
3172
3128
|
}
|
|
3173
3129
|
),
|
|
3174
|
-
/* @__PURE__ */
|
|
3130
|
+
/* @__PURE__ */ jsx208(
|
|
3175
3131
|
"path",
|
|
3176
3132
|
{
|
|
3177
3133
|
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",
|
|
@@ -3186,11 +3142,11 @@ var TextTruncateIcon = React34.forwardRef(
|
|
|
3186
3142
|
TextTruncateIcon.displayName = "TextTruncateIcon";
|
|
3187
3143
|
|
|
3188
3144
|
// src/text-underline.tsx
|
|
3189
|
-
import * as
|
|
3190
|
-
import { jsx as
|
|
3191
|
-
var TextUnderlineIcon =
|
|
3145
|
+
import * as React34 from "react";
|
|
3146
|
+
import { jsx as jsx209 } from "react/jsx-runtime";
|
|
3147
|
+
var TextUnderlineIcon = React34.forwardRef(
|
|
3192
3148
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
3193
|
-
return /* @__PURE__ */
|
|
3149
|
+
return /* @__PURE__ */ jsx209(
|
|
3194
3150
|
"svg",
|
|
3195
3151
|
{
|
|
3196
3152
|
width: "16",
|
|
@@ -3200,7 +3156,7 @@ var TextUnderlineIcon = React35.forwardRef(
|
|
|
3200
3156
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3201
3157
|
...props,
|
|
3202
3158
|
ref: forwardedRef,
|
|
3203
|
-
children: /* @__PURE__ */
|
|
3159
|
+
children: /* @__PURE__ */ jsx209(
|
|
3204
3160
|
"path",
|
|
3205
3161
|
{
|
|
3206
3162
|
fillRule: "evenodd",
|
|
@@ -3216,11 +3172,11 @@ var TextUnderlineIcon = React35.forwardRef(
|
|
|
3216
3172
|
TextUnderlineIcon.displayName = "TextUnderlineIcon";
|
|
3217
3173
|
|
|
3218
3174
|
// src/text-uppercase.tsx
|
|
3219
|
-
import * as
|
|
3220
|
-
import { jsx as
|
|
3221
|
-
var TextUppercaseIcon =
|
|
3175
|
+
import * as React35 from "react";
|
|
3176
|
+
import { jsx as jsx210 } from "react/jsx-runtime";
|
|
3177
|
+
var TextUppercaseIcon = React35.forwardRef(
|
|
3222
3178
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
3223
|
-
return /* @__PURE__ */
|
|
3179
|
+
return /* @__PURE__ */ jsx210(
|
|
3224
3180
|
"svg",
|
|
3225
3181
|
{
|
|
3226
3182
|
width: "16",
|
|
@@ -3230,7 +3186,7 @@ var TextUppercaseIcon = React36.forwardRef(
|
|
|
3230
3186
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3231
3187
|
...props,
|
|
3232
3188
|
ref: forwardedRef,
|
|
3233
|
-
children: /* @__PURE__ */
|
|
3189
|
+
children: /* @__PURE__ */ jsx210(
|
|
3234
3190
|
"path",
|
|
3235
3191
|
{
|
|
3236
3192
|
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",
|
|
@@ -3247,11 +3203,11 @@ var TextUppercaseIcon = React36.forwardRef(
|
|
|
3247
3203
|
TextUppercaseIcon.displayName = "TextUppercaseIcon";
|
|
3248
3204
|
|
|
3249
3205
|
// src/text-direction-ltr.tsx
|
|
3250
|
-
import * as
|
|
3251
|
-
import { jsx as
|
|
3252
|
-
var TextDirectionLTRIcon =
|
|
3206
|
+
import * as React36 from "react";
|
|
3207
|
+
import { jsx as jsx211 } from "react/jsx-runtime";
|
|
3208
|
+
var TextDirectionLTRIcon = React36.forwardRef(
|
|
3253
3209
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
3254
|
-
return /* @__PURE__ */
|
|
3210
|
+
return /* @__PURE__ */ jsx211(
|
|
3255
3211
|
"svg",
|
|
3256
3212
|
{
|
|
3257
3213
|
width: "16",
|
|
@@ -3261,7 +3217,7 @@ var TextDirectionLTRIcon = React37.forwardRef(
|
|
|
3261
3217
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3262
3218
|
...props,
|
|
3263
3219
|
ref: forwardedRef,
|
|
3264
|
-
children: /* @__PURE__ */
|
|
3220
|
+
children: /* @__PURE__ */ jsx211(
|
|
3265
3221
|
"path",
|
|
3266
3222
|
{
|
|
3267
3223
|
fillRule: "evenodd",
|
|
@@ -3277,11 +3233,11 @@ var TextDirectionLTRIcon = React37.forwardRef(
|
|
|
3277
3233
|
TextDirectionLTRIcon.displayName = "TextDirectionLTRIcon";
|
|
3278
3234
|
|
|
3279
3235
|
// src/text-direction-rtl.tsx
|
|
3280
|
-
import * as
|
|
3281
|
-
import { jsx as
|
|
3282
|
-
var TextDirectionRTLIcon =
|
|
3236
|
+
import * as React37 from "react";
|
|
3237
|
+
import { jsx as jsx212 } from "react/jsx-runtime";
|
|
3238
|
+
var TextDirectionRTLIcon = React37.forwardRef(
|
|
3283
3239
|
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
3284
|
-
return /* @__PURE__ */
|
|
3240
|
+
return /* @__PURE__ */ jsx212(
|
|
3285
3241
|
"svg",
|
|
3286
3242
|
{
|
|
3287
3243
|
width: "16",
|
|
@@ -3291,7 +3247,7 @@ var TextDirectionRTLIcon = React38.forwardRef(
|
|
|
3291
3247
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3292
3248
|
...props,
|
|
3293
3249
|
ref: forwardedRef,
|
|
3294
|
-
children: /* @__PURE__ */
|
|
3250
|
+
children: /* @__PURE__ */ jsx212(
|
|
3295
3251
|
"path",
|
|
3296
3252
|
{
|
|
3297
3253
|
fillRule: "evenodd",
|
|
@@ -3447,7 +3403,6 @@ export {
|
|
|
3447
3403
|
LoadingDotsIcon,
|
|
3448
3404
|
MagnifyingGlassIcon,
|
|
3449
3405
|
MenuEllipsesIcon,
|
|
3450
|
-
MenuIcon,
|
|
3451
3406
|
MicIcon,
|
|
3452
3407
|
MicOffIcon,
|
|
3453
3408
|
MinusIcon,
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import type { IconProps } from "./types";
|
|
3
|
-
export declare const EllipsesIcon: React.ForwardRefExoticComponent<IconProps &
|
|
3
|
+
export declare const EllipsesIcon: React.ForwardRefExoticComponent<IconProps & {
|
|
4
|
+
colors?: string[] | undefined;
|
|
5
|
+
} & React.RefAttributes<SVGSVGElement>>;
|
package/lib/types/src/index.d.ts
CHANGED
|
@@ -22,7 +22,6 @@ export * from "./chevron-double-right";
|
|
|
22
22
|
export * from "./cross-circled-filled";
|
|
23
23
|
export * from "./cross";
|
|
24
24
|
export * from "./magnifying-glass";
|
|
25
|
-
export * from "./menu";
|
|
26
25
|
export * from "./cross-small";
|
|
27
26
|
export * from "./cross-large";
|
|
28
27
|
export * from "./ellipses";
|
package/package.json
CHANGED
package/lib/types/src/menu.d.ts
DELETED