@lobehub/icons-rn 1.4.1 → 1.4.2
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/README.md +16 -37
- package/dist/esm/index.js +169 -180
- package/dist/esm/index.js.map +1 -1
- package/dist/index.js +9 -20
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/esm/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { memo, useMemo } from 'react';
|
|
2
|
+
import { LinearGradient } from 'expo-linear-gradient';
|
|
2
3
|
import { View, Image, Text, useColorScheme } from 'react-native';
|
|
3
4
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
4
|
-
import { Svg, Path, Defs, LinearGradient, Stop, RadialGradient, G, Rect, ClipPath, Circle, Ellipse } from 'react-native-svg';
|
|
5
|
+
import { Svg, Path, Defs, LinearGradient as LinearGradient$1, Stop, RadialGradient, G, Rect, ClipPath, Circle, Ellipse } from 'react-native-svg';
|
|
5
6
|
import { kebabCase } from 'lodash-es';
|
|
6
7
|
|
|
7
8
|
var __defProp = Object.defineProperty;
|
|
@@ -23,12 +24,6 @@ var __spreadValues = (a, b) => {
|
|
|
23
24
|
return a;
|
|
24
25
|
};
|
|
25
26
|
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
26
|
-
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
27
|
-
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
28
|
-
}) : x)(function(x) {
|
|
29
|
-
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
30
|
-
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
31
|
-
});
|
|
32
27
|
var __objRest = (source, exclude) => {
|
|
33
28
|
var target = {};
|
|
34
29
|
for (var prop in source)
|
|
@@ -78,12 +73,14 @@ var parseLinearGradient = (gradientString) => {
|
|
|
78
73
|
const parts = match[1].split(",").map((s) => s.trim());
|
|
79
74
|
if (parts.length < 2) return null;
|
|
80
75
|
let direction = parts[0];
|
|
81
|
-
let colors
|
|
76
|
+
let colors;
|
|
82
77
|
let locations;
|
|
83
78
|
const isColor = direction.match(/#[\dA-Fa-f]{6}|#[\dA-Fa-f]{3}|rgb|hsl/);
|
|
84
79
|
const colorParts = isColor ? parts : parts.slice(1);
|
|
85
80
|
const colorData = colorParts.map((part) => {
|
|
86
|
-
const colorMatch = part.match(
|
|
81
|
+
const colorMatch = part.match(
|
|
82
|
+
/(#[\dA-Fa-f]{6}|#[\dA-Fa-f]{3}|rgb\([^)]+\)|rgba\([^)]+\)|hsl\([^)]+\)|hsla\([^)]+\))/
|
|
83
|
+
);
|
|
87
84
|
const percentMatch = part.match(/(\d+(?:\.\d+)?)%/);
|
|
88
85
|
if (colorMatch) {
|
|
89
86
|
return {
|
|
@@ -100,10 +97,7 @@ var parseLinearGradient = (gradientString) => {
|
|
|
100
97
|
return item.location !== void 0 ? item.location : index / (colorData.length - 1);
|
|
101
98
|
});
|
|
102
99
|
}
|
|
103
|
-
const coordinates = isColor ? { end: { x: 0, y: 1 }, start: { x: 0, y: 0 } } : (
|
|
104
|
-
// default to bottom
|
|
105
|
-
parseGradientDirection(direction)
|
|
106
|
-
);
|
|
100
|
+
const coordinates = isColor ? { end: { x: 0, y: 1 }, start: { x: 0, y: 0 } } : parseGradientDirection(direction);
|
|
107
101
|
return __spreadProps(__spreadValues({
|
|
108
102
|
colors
|
|
109
103
|
}, coordinates), {
|
|
@@ -158,18 +152,13 @@ var RNIconAvatar = memo(
|
|
|
158
152
|
width: size
|
|
159
153
|
};
|
|
160
154
|
const combinedStyle = [containerStyle, style];
|
|
161
|
-
|
|
162
|
-
try {
|
|
163
|
-
LinearGradient55 = __require("react-native-linear-gradient").default;
|
|
164
|
-
} catch (e) {
|
|
165
|
-
}
|
|
166
|
-
if (gradientInfo && LinearGradient55) {
|
|
155
|
+
if (gradientInfo && LinearGradient && gradientInfo.colors.length >= 2) {
|
|
167
156
|
return /* @__PURE__ */ jsx(
|
|
168
|
-
|
|
157
|
+
LinearGradient,
|
|
169
158
|
__spreadProps(__spreadValues({
|
|
170
159
|
colors: gradientInfo.colors,
|
|
171
160
|
end: gradientInfo.end,
|
|
172
|
-
locations: gradientInfo.locations,
|
|
161
|
+
locations: gradientInfo.locations && gradientInfo.locations.length >= 2 ? gradientInfo.locations : void 0,
|
|
173
162
|
start: gradientInfo.start,
|
|
174
163
|
style: combinedStyle
|
|
175
164
|
}, rest), {
|
|
@@ -641,12 +630,12 @@ var Icon8 = memo((_a) => {
|
|
|
641
630
|
/* @__PURE__ */ jsx(Path, { d: "M13.83 7.961a.755.755 0 11-1.51 0 .755.755 0 011.51 0z", fill: d.fill }),
|
|
642
631
|
/* @__PURE__ */ jsx(Path, { d: "M10.809 16.678a.755.755 0 100-1.511.755.755 0 000 1.51z", fill: e.fill }),
|
|
643
632
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
644
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "12", x2: "12", y1: "0", y2: "24", children: [
|
|
633
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "12", x2: "12", y1: "0", y2: "24", children: [
|
|
645
634
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#12B7FA" }),
|
|
646
635
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#006ffb" })
|
|
647
636
|
] }),
|
|
648
637
|
/* @__PURE__ */ jsxs(
|
|
649
|
-
LinearGradient,
|
|
638
|
+
LinearGradient$1,
|
|
650
639
|
{
|
|
651
640
|
gradientUnits: "userSpaceOnUse",
|
|
652
641
|
id: b.id,
|
|
@@ -661,7 +650,7 @@ var Icon8 = memo((_a) => {
|
|
|
661
650
|
}
|
|
662
651
|
),
|
|
663
652
|
/* @__PURE__ */ jsxs(
|
|
664
|
-
LinearGradient,
|
|
653
|
+
LinearGradient$1,
|
|
665
654
|
{
|
|
666
655
|
gradientUnits: "userSpaceOnUse",
|
|
667
656
|
id: c.id,
|
|
@@ -676,7 +665,7 @@ var Icon8 = memo((_a) => {
|
|
|
676
665
|
}
|
|
677
666
|
),
|
|
678
667
|
/* @__PURE__ */ jsxs(
|
|
679
|
-
LinearGradient,
|
|
668
|
+
LinearGradient$1,
|
|
680
669
|
{
|
|
681
670
|
gradientUnits: "userSpaceOnUse",
|
|
682
671
|
id: d.id,
|
|
@@ -691,7 +680,7 @@ var Icon8 = memo((_a) => {
|
|
|
691
680
|
}
|
|
692
681
|
),
|
|
693
682
|
/* @__PURE__ */ jsxs(
|
|
694
|
-
LinearGradient,
|
|
683
|
+
LinearGradient$1,
|
|
695
684
|
{
|
|
696
685
|
gradientUnits: "userSpaceOnUse",
|
|
697
686
|
id: e.id,
|
|
@@ -2163,7 +2152,7 @@ var Icon34 = memo((_a) => {
|
|
|
2163
2152
|
var _b = _a, { size = 24, style } = _b, rest = __objRest(_b, ["size", "style"]);
|
|
2164
2153
|
const { id, fill } = useFillId(TITLE11);
|
|
2165
2154
|
return /* @__PURE__ */ jsxs(Svg, __spreadProps(__spreadValues({ height: size, style, viewBox: "0 0 24 24", width: size }, rest), { children: [
|
|
2166
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { id, x1: "17.764%", x2: "100%", y1: "8.678%", y2: "91.322%", children: [
|
|
2155
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { id, x1: "17.764%", x2: "100%", y1: "8.678%", y2: "91.322%", children: [
|
|
2167
2156
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#FEC13E" }),
|
|
2168
2157
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#FF6933" })
|
|
2169
2158
|
] }) }),
|
|
@@ -2674,7 +2663,7 @@ var Icon45 = memo((_a) => {
|
|
|
2674
2663
|
}
|
|
2675
2664
|
),
|
|
2676
2665
|
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(
|
|
2677
|
-
LinearGradient,
|
|
2666
|
+
LinearGradient$1,
|
|
2678
2667
|
{
|
|
2679
2668
|
gradientTransform: "matrix(-.04 9.248 -11.433 -.05 12.058 8.618)",
|
|
2680
2669
|
gradientUnits: "userSpaceOnUse",
|
|
@@ -3069,7 +3058,7 @@ var Icon54 = memo((_a) => {
|
|
|
3069
3058
|
var _b = _a, { size = 24, style } = _b, rest = __objRest(_b, ["size", "style"]);
|
|
3070
3059
|
const { id, fill } = useFillId(TITLE17);
|
|
3071
3060
|
return /* @__PURE__ */ jsxs(Svg, __spreadProps(__spreadValues({ height: size, style, viewBox: "0 0 24 24", width: size }, rest), { children: [
|
|
3072
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { id, x1: "-18.756%", x2: "70.894%", y1: "49.371%", y2: "90.944%", children: [
|
|
3061
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { id, x1: "-18.756%", x2: "70.894%", y1: "49.371%", y2: "90.944%", children: [
|
|
3073
3062
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#504AF4" }),
|
|
3074
3063
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#3485FF" })
|
|
3075
3064
|
] }) }),
|
|
@@ -3588,7 +3577,7 @@ var Icon62 = memo((_a) => {
|
|
|
3588
3577
|
/* @__PURE__ */ jsx(Path, { d: "M13.681 4.423a.108.108 0 100-.217.108.108 0 000 .217z", fill: "#fff" }),
|
|
3589
3578
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
3590
3579
|
/* @__PURE__ */ jsxs(
|
|
3591
|
-
LinearGradient,
|
|
3580
|
+
LinearGradient$1,
|
|
3592
3581
|
{
|
|
3593
3582
|
gradientUnits: "userSpaceOnUse",
|
|
3594
3583
|
id: a.id,
|
|
@@ -3603,7 +3592,7 @@ var Icon62 = memo((_a) => {
|
|
|
3603
3592
|
}
|
|
3604
3593
|
),
|
|
3605
3594
|
/* @__PURE__ */ jsxs(
|
|
3606
|
-
LinearGradient,
|
|
3595
|
+
LinearGradient$1,
|
|
3607
3596
|
{
|
|
3608
3597
|
gradientUnits: "userSpaceOnUse",
|
|
3609
3598
|
id: c.id,
|
|
@@ -3619,7 +3608,7 @@ var Icon62 = memo((_a) => {
|
|
|
3619
3608
|
}
|
|
3620
3609
|
),
|
|
3621
3610
|
/* @__PURE__ */ jsxs(
|
|
3622
|
-
LinearGradient,
|
|
3611
|
+
LinearGradient$1,
|
|
3623
3612
|
{
|
|
3624
3613
|
gradientUnits: "userSpaceOnUse",
|
|
3625
3614
|
id: d.id,
|
|
@@ -3634,7 +3623,7 @@ var Icon62 = memo((_a) => {
|
|
|
3634
3623
|
}
|
|
3635
3624
|
),
|
|
3636
3625
|
/* @__PURE__ */ jsxs(
|
|
3637
|
-
LinearGradient,
|
|
3626
|
+
LinearGradient$1,
|
|
3638
3627
|
{
|
|
3639
3628
|
gradientUnits: "userSpaceOnUse",
|
|
3640
3629
|
id: e.id,
|
|
@@ -3649,7 +3638,7 @@ var Icon62 = memo((_a) => {
|
|
|
3649
3638
|
}
|
|
3650
3639
|
),
|
|
3651
3640
|
/* @__PURE__ */ jsxs(
|
|
3652
|
-
LinearGradient,
|
|
3641
|
+
LinearGradient$1,
|
|
3653
3642
|
{
|
|
3654
3643
|
gradientUnits: "userSpaceOnUse",
|
|
3655
3644
|
id: f.id,
|
|
@@ -3664,7 +3653,7 @@ var Icon62 = memo((_a) => {
|
|
|
3664
3653
|
}
|
|
3665
3654
|
),
|
|
3666
3655
|
/* @__PURE__ */ jsxs(
|
|
3667
|
-
LinearGradient,
|
|
3656
|
+
LinearGradient$1,
|
|
3668
3657
|
{
|
|
3669
3658
|
gradientUnits: "userSpaceOnUse",
|
|
3670
3659
|
id: g.id,
|
|
@@ -3687,7 +3676,7 @@ var Icon62 = memo((_a) => {
|
|
|
3687
3676
|
}
|
|
3688
3677
|
),
|
|
3689
3678
|
/* @__PURE__ */ jsxs(
|
|
3690
|
-
LinearGradient,
|
|
3679
|
+
LinearGradient$1,
|
|
3691
3680
|
{
|
|
3692
3681
|
gradientUnits: "userSpaceOnUse",
|
|
3693
3682
|
id: h.id,
|
|
@@ -3703,7 +3692,7 @@ var Icon62 = memo((_a) => {
|
|
|
3703
3692
|
}
|
|
3704
3693
|
),
|
|
3705
3694
|
/* @__PURE__ */ jsxs(
|
|
3706
|
-
LinearGradient,
|
|
3695
|
+
LinearGradient$1,
|
|
3707
3696
|
{
|
|
3708
3697
|
gradientUnits: "userSpaceOnUse",
|
|
3709
3698
|
id: l.id,
|
|
@@ -3718,7 +3707,7 @@ var Icon62 = memo((_a) => {
|
|
|
3718
3707
|
}
|
|
3719
3708
|
),
|
|
3720
3709
|
/* @__PURE__ */ jsxs(
|
|
3721
|
-
LinearGradient,
|
|
3710
|
+
LinearGradient$1,
|
|
3722
3711
|
{
|
|
3723
3712
|
gradientUnits: "userSpaceOnUse",
|
|
3724
3713
|
id: m.id,
|
|
@@ -3733,7 +3722,7 @@ var Icon62 = memo((_a) => {
|
|
|
3733
3722
|
}
|
|
3734
3723
|
),
|
|
3735
3724
|
/* @__PURE__ */ jsxs(
|
|
3736
|
-
LinearGradient,
|
|
3725
|
+
LinearGradient$1,
|
|
3737
3726
|
{
|
|
3738
3727
|
gradientUnits: "userSpaceOnUse",
|
|
3739
3728
|
id: o.id,
|
|
@@ -3748,7 +3737,7 @@ var Icon62 = memo((_a) => {
|
|
|
3748
3737
|
}
|
|
3749
3738
|
),
|
|
3750
3739
|
/* @__PURE__ */ jsxs(
|
|
3751
|
-
LinearGradient,
|
|
3740
|
+
LinearGradient$1,
|
|
3752
3741
|
{
|
|
3753
3742
|
gradientUnits: "userSpaceOnUse",
|
|
3754
3743
|
id: p.id,
|
|
@@ -3763,7 +3752,7 @@ var Icon62 = memo((_a) => {
|
|
|
3763
3752
|
}
|
|
3764
3753
|
),
|
|
3765
3754
|
/* @__PURE__ */ jsxs(
|
|
3766
|
-
LinearGradient,
|
|
3755
|
+
LinearGradient$1,
|
|
3767
3756
|
{
|
|
3768
3757
|
gradientUnits: "userSpaceOnUse",
|
|
3769
3758
|
id: r.id,
|
|
@@ -3778,7 +3767,7 @@ var Icon62 = memo((_a) => {
|
|
|
3778
3767
|
}
|
|
3779
3768
|
),
|
|
3780
3769
|
/* @__PURE__ */ jsxs(
|
|
3781
|
-
LinearGradient,
|
|
3770
|
+
LinearGradient$1,
|
|
3782
3771
|
{
|
|
3783
3772
|
gradientUnits: "userSpaceOnUse",
|
|
3784
3773
|
id: t.id,
|
|
@@ -3795,7 +3784,7 @@ var Icon62 = memo((_a) => {
|
|
|
3795
3784
|
}
|
|
3796
3785
|
),
|
|
3797
3786
|
/* @__PURE__ */ jsxs(
|
|
3798
|
-
LinearGradient,
|
|
3787
|
+
LinearGradient$1,
|
|
3799
3788
|
{
|
|
3800
3789
|
gradientUnits: "userSpaceOnUse",
|
|
3801
3790
|
id: w.id,
|
|
@@ -3810,7 +3799,7 @@ var Icon62 = memo((_a) => {
|
|
|
3810
3799
|
}
|
|
3811
3800
|
),
|
|
3812
3801
|
/* @__PURE__ */ jsxs(
|
|
3813
|
-
LinearGradient,
|
|
3802
|
+
LinearGradient$1,
|
|
3814
3803
|
{
|
|
3815
3804
|
gradientUnits: "userSpaceOnUse",
|
|
3816
3805
|
id: x.id,
|
|
@@ -3825,7 +3814,7 @@ var Icon62 = memo((_a) => {
|
|
|
3825
3814
|
}
|
|
3826
3815
|
),
|
|
3827
3816
|
/* @__PURE__ */ jsxs(
|
|
3828
|
-
LinearGradient,
|
|
3817
|
+
LinearGradient$1,
|
|
3829
3818
|
{
|
|
3830
3819
|
gradientUnits: "userSpaceOnUse",
|
|
3831
3820
|
id: y.id,
|
|
@@ -5568,16 +5557,16 @@ var Icon98 = memo((_a) => {
|
|
|
5568
5557
|
}
|
|
5569
5558
|
),
|
|
5570
5559
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
5571
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "7", x2: "11", y1: "15.5", y2: "12", children: [
|
|
5560
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "7", x2: "11", y1: "15.5", y2: "12", children: [
|
|
5572
5561
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#08B962" }),
|
|
5573
5562
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#08B962", stopOpacity: "0" })
|
|
5574
5563
|
] }),
|
|
5575
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: b.id, x1: "8", x2: "11.5", y1: "5.5", y2: "11", children: [
|
|
5564
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: b.id, x1: "8", x2: "11.5", y1: "5.5", y2: "11", children: [
|
|
5576
5565
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#F94543" }),
|
|
5577
5566
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#F94543", stopOpacity: "0" })
|
|
5578
5567
|
] }),
|
|
5579
5568
|
/* @__PURE__ */ jsxs(
|
|
5580
|
-
LinearGradient,
|
|
5569
|
+
LinearGradient$1,
|
|
5581
5570
|
{
|
|
5582
5571
|
gradientUnits: "userSpaceOnUse",
|
|
5583
5572
|
id: c.id,
|
|
@@ -5735,7 +5724,7 @@ var Icon102 = memo((_a) => {
|
|
|
5735
5724
|
var _b = _a, { size = 24, style } = _b, rest = __objRest(_b, ["size", "style"]);
|
|
5736
5725
|
const { id, fill } = useFillId(TITLE33);
|
|
5737
5726
|
return /* @__PURE__ */ jsxs(Svg, __spreadProps(__spreadValues({ height: size, style, viewBox: "0 0 24 24", width: size }, rest), { children: [
|
|
5738
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { id, x1: "24.419%", x2: "75.194%", y1: "75.581%", y2: "25.194%", children: [
|
|
5727
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { id, x1: "24.419%", x2: "75.194%", y1: "75.581%", y2: "25.194%", children: [
|
|
5739
5728
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#446EFF" }),
|
|
5740
5729
|
/* @__PURE__ */ jsx(Stop, { offset: "36.7%", stopColor: "#2E96FF" }),
|
|
5741
5730
|
/* @__PURE__ */ jsx(Stop, { offset: "83.2%", stopColor: "#B1C5FF" })
|
|
@@ -7990,56 +7979,56 @@ var Icon140 = memo((_a) => {
|
|
|
7990
7979
|
}
|
|
7991
7980
|
),
|
|
7992
7981
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
7993
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: a.id, x1: "75.904%", x2: "33.275%", y1: "89.153%", y2: "23.044%", children: [
|
|
7982
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: a.id, x1: "75.904%", x2: "33.275%", y1: "89.153%", y2: "23.044%", children: [
|
|
7994
7983
|
/* @__PURE__ */ jsx(Stop, { offset: "0.06%", stopColor: "#0867DF" }),
|
|
7995
7984
|
/* @__PURE__ */ jsx(Stop, { offset: "45.39%", stopColor: "#0668E1" }),
|
|
7996
7985
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0064E0" })
|
|
7997
7986
|
] }),
|
|
7998
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: b.id, x1: "21.67%", x2: "97.068%", y1: "75.837%", y2: "24.022%", children: [
|
|
7987
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: b.id, x1: "21.67%", x2: "97.068%", y1: "75.837%", y2: "24.022%", children: [
|
|
7999
7988
|
/* @__PURE__ */ jsx(Stop, { offset: "13.23%", stopColor: "#0064DF" }),
|
|
8000
7989
|
/* @__PURE__ */ jsx(Stop, { offset: "99.88%", stopColor: "#0064E0" })
|
|
8001
7990
|
] }),
|
|
8002
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: c.id, x1: "38.247%", x2: "60.91%", y1: "89.127%", y2: "16.131%", children: [
|
|
7991
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: c.id, x1: "38.247%", x2: "60.91%", y1: "89.127%", y2: "16.131%", children: [
|
|
8003
7992
|
/* @__PURE__ */ jsx(Stop, { offset: "1.47%", stopColor: "#0072EC" }),
|
|
8004
7993
|
/* @__PURE__ */ jsx(Stop, { offset: "68.81%", stopColor: "#0064DF" })
|
|
8005
7994
|
] }),
|
|
8006
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: d.id, x1: "47.027%", x2: "52.153%", y1: "90.19%", y2: "15.745%", children: [
|
|
7995
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: d.id, x1: "47.027%", x2: "52.153%", y1: "90.19%", y2: "15.745%", children: [
|
|
8007
7996
|
/* @__PURE__ */ jsx(Stop, { offset: "7.31%", stopColor: "#007CF6" }),
|
|
8008
7997
|
/* @__PURE__ */ jsx(Stop, { offset: "99.43%", stopColor: "#0072EC" })
|
|
8009
7998
|
] }),
|
|
8010
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: e.id, x1: "52.155%", x2: "47.591%", y1: "58.289%", y2: "37.023%", children: [
|
|
7999
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: e.id, x1: "52.155%", x2: "47.591%", y1: "58.289%", y2: "37.023%", children: [
|
|
8011
8000
|
/* @__PURE__ */ jsx(Stop, { offset: "7.31%", stopColor: "#007FF9" }),
|
|
8012
8001
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#007CF6" })
|
|
8013
8002
|
] }),
|
|
8014
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: f.id, x1: "37.689%", x2: "61.961%", y1: "12.556%", y2: "63.605%", children: [
|
|
8003
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: f.id, x1: "37.689%", x2: "61.961%", y1: "12.556%", y2: "63.605%", children: [
|
|
8015
8004
|
/* @__PURE__ */ jsx(Stop, { offset: "7.31%", stopColor: "#007FF9" }),
|
|
8016
8005
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0082FB" })
|
|
8017
8006
|
] }),
|
|
8018
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: g.id, x1: "42.496%", x2: "59.964%", y1: "56.072%", y2: "27.099%", children: [
|
|
8007
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: g.id, x1: "42.496%", x2: "59.964%", y1: "56.072%", y2: "27.099%", children: [
|
|
8019
8008
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#007FF8" }),
|
|
8020
8009
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0082FB" })
|
|
8021
8010
|
] }),
|
|
8022
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: h.id, x1: "43.753%", x2: "57.613%", y1: "6.235%", y2: "98.514%", children: [
|
|
8011
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: h.id, x1: "43.753%", x2: "57.613%", y1: "6.235%", y2: "98.514%", children: [
|
|
8023
8012
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#0082FB" }),
|
|
8024
8013
|
/* @__PURE__ */ jsx(Stop, { offset: "99.95%", stopColor: "#0081FA" })
|
|
8025
8014
|
] }),
|
|
8026
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: i.id, x1: "60.07%", x2: "39.865%", y1: "4.661%", y2: "69.077%", children: [
|
|
8015
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: i.id, x1: "60.07%", x2: "39.865%", y1: "4.661%", y2: "69.077%", children: [
|
|
8027
8016
|
/* @__PURE__ */ jsx(Stop, { offset: "6.19%", stopColor: "#0081FA" }),
|
|
8028
8017
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0080F9" })
|
|
8029
8018
|
] }),
|
|
8030
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: j.id, x1: "30.254%", x2: "61.097%", y1: "59.32%", y2: "33.244%", children: [
|
|
8019
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: j.id, x1: "30.254%", x2: "61.097%", y1: "59.32%", y2: "33.244%", children: [
|
|
8031
8020
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#027AF3" }),
|
|
8032
8021
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0080F9" })
|
|
8033
8022
|
] }),
|
|
8034
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: k.id, x1: "20.433%", x2: "82.112%", y1: "50.001%", y2: "50.001%", children: [
|
|
8023
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: k.id, x1: "20.433%", x2: "82.112%", y1: "50.001%", y2: "50.001%", children: [
|
|
8035
8024
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#0377EF" }),
|
|
8036
8025
|
/* @__PURE__ */ jsx(Stop, { offset: "99.94%", stopColor: "#0279F1" })
|
|
8037
8026
|
] }),
|
|
8038
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: l.id, x1: "40.289%", x2: "72.427%", y1: "35.298%", y2: "57.811%", children: [
|
|
8027
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: l.id, x1: "40.289%", x2: "72.427%", y1: "35.298%", y2: "57.811%", children: [
|
|
8039
8028
|
/* @__PURE__ */ jsx(Stop, { offset: "0.19%", stopColor: "#0471E9" }),
|
|
8040
8029
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0377EF" })
|
|
8041
8030
|
] }),
|
|
8042
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: m.id, x1: "32.228%", x2: "68.028%", y1: "19.719%", y2: "84.908%", children: [
|
|
8031
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: m.id, x1: "32.228%", x2: "68.028%", y1: "19.719%", y2: "84.908%", children: [
|
|
8043
8032
|
/* @__PURE__ */ jsx(Stop, { offset: "27.65%", stopColor: "#0867DF" }),
|
|
8044
8033
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0471E9" })
|
|
8045
8034
|
] })
|
|
@@ -8184,56 +8173,56 @@ var Icon142 = memo((_a) => {
|
|
|
8184
8173
|
}
|
|
8185
8174
|
),
|
|
8186
8175
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
8187
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: a.id, x1: "75.897%", x2: "26.312%", y1: "89.199%", y2: "12.194%", children: [
|
|
8176
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: a.id, x1: "75.897%", x2: "26.312%", y1: "89.199%", y2: "12.194%", children: [
|
|
8188
8177
|
/* @__PURE__ */ jsx(Stop, { offset: "0.06%", stopColor: "#0867DF" }),
|
|
8189
8178
|
/* @__PURE__ */ jsx(Stop, { offset: "45.39%", stopColor: "#0668E1" }),
|
|
8190
8179
|
/* @__PURE__ */ jsx(Stop, { offset: "85.91%", stopColor: "#0064E0" })
|
|
8191
8180
|
] }),
|
|
8192
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: b.id, x1: "21.67%", x2: "97.068%", y1: "75.874%", y2: "23.985%", children: [
|
|
8181
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: b.id, x1: "21.67%", x2: "97.068%", y1: "75.874%", y2: "23.985%", children: [
|
|
8193
8182
|
/* @__PURE__ */ jsx(Stop, { offset: "13.23%", stopColor: "#0064DF" }),
|
|
8194
8183
|
/* @__PURE__ */ jsx(Stop, { offset: "99.88%", stopColor: "#0064E0" })
|
|
8195
8184
|
] }),
|
|
8196
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: c.id, x1: "38.263%", x2: "60.895%", y1: "89.127%", y2: "16.131%", children: [
|
|
8185
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: c.id, x1: "38.263%", x2: "60.895%", y1: "89.127%", y2: "16.131%", children: [
|
|
8197
8186
|
/* @__PURE__ */ jsx(Stop, { offset: "1.47%", stopColor: "#0072EC" }),
|
|
8198
8187
|
/* @__PURE__ */ jsx(Stop, { offset: "68.81%", stopColor: "#0064DF" })
|
|
8199
8188
|
] }),
|
|
8200
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: d.id, x1: "47.032%", x2: "52.15%", y1: "90.19%", y2: "15.745%", children: [
|
|
8189
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: d.id, x1: "47.032%", x2: "52.15%", y1: "90.19%", y2: "15.745%", children: [
|
|
8201
8190
|
/* @__PURE__ */ jsx(Stop, { offset: "7.31%", stopColor: "#007CF6" }),
|
|
8202
8191
|
/* @__PURE__ */ jsx(Stop, { offset: "99.43%", stopColor: "#0072EC" })
|
|
8203
8192
|
] }),
|
|
8204
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: e.id, x1: "52.155%", x2: "47.591%", y1: "58.301%", y2: "37.004%", children: [
|
|
8193
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: e.id, x1: "52.155%", x2: "47.591%", y1: "58.301%", y2: "37.004%", children: [
|
|
8205
8194
|
/* @__PURE__ */ jsx(Stop, { offset: "7.31%", stopColor: "#007FF9" }),
|
|
8206
8195
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#007CF6" })
|
|
8207
8196
|
] }),
|
|
8208
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: f.id, x1: "37.689%", x2: "61.961%", y1: "12.502%", y2: "63.624%", children: [
|
|
8197
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: f.id, x1: "37.689%", x2: "61.961%", y1: "12.502%", y2: "63.624%", children: [
|
|
8209
8198
|
/* @__PURE__ */ jsx(Stop, { offset: "7.31%", stopColor: "#007FF9" }),
|
|
8210
8199
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0082FB" })
|
|
8211
8200
|
] }),
|
|
8212
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: g.id, x1: "34.808%", x2: "62.313%", y1: "68.859%", y2: "23.174%", children: [
|
|
8201
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: g.id, x1: "34.808%", x2: "62.313%", y1: "68.859%", y2: "23.174%", children: [
|
|
8213
8202
|
/* @__PURE__ */ jsx(Stop, { offset: "27.99%", stopColor: "#007FF8" }),
|
|
8214
8203
|
/* @__PURE__ */ jsx(Stop, { offset: "91.41%", stopColor: "#0082FB" })
|
|
8215
8204
|
] }),
|
|
8216
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: h.id, x1: "43.762%", x2: "57.602%", y1: "6.235%", y2: "98.514%", children: [
|
|
8205
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: h.id, x1: "43.762%", x2: "57.602%", y1: "6.235%", y2: "98.514%", children: [
|
|
8217
8206
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#0082FB" }),
|
|
8218
8207
|
/* @__PURE__ */ jsx(Stop, { offset: "99.95%", stopColor: "#0081FA" })
|
|
8219
8208
|
] }),
|
|
8220
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: i.id, x1: "60.055%", x2: "39.88%", y1: "4.661%", y2: "69.077%", children: [
|
|
8209
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: i.id, x1: "60.055%", x2: "39.88%", y1: "4.661%", y2: "69.077%", children: [
|
|
8221
8210
|
/* @__PURE__ */ jsx(Stop, { offset: "6.19%", stopColor: "#0081FA" }),
|
|
8222
8211
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0080F9" })
|
|
8223
8212
|
] }),
|
|
8224
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: j.id, x1: "30.282%", x2: "61.081%", y1: "59.32%", y2: "33.244%", children: [
|
|
8213
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: j.id, x1: "30.282%", x2: "61.081%", y1: "59.32%", y2: "33.244%", children: [
|
|
8225
8214
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#027AF3" }),
|
|
8226
8215
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0080F9" })
|
|
8227
8216
|
] }),
|
|
8228
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: k.id, x1: "20.433%", x2: "82.112%", y1: "50.001%", y2: "50.001%", children: [
|
|
8217
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: k.id, x1: "20.433%", x2: "82.112%", y1: "50.001%", y2: "50.001%", children: [
|
|
8229
8218
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#0377EF" }),
|
|
8230
8219
|
/* @__PURE__ */ jsx(Stop, { offset: "99.94%", stopColor: "#0279F1" })
|
|
8231
8220
|
] }),
|
|
8232
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: l.id, x1: "40.303%", x2: "72.394%", y1: "35.298%", y2: "57.811%", children: [
|
|
8221
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: l.id, x1: "40.303%", x2: "72.394%", y1: "35.298%", y2: "57.811%", children: [
|
|
8233
8222
|
/* @__PURE__ */ jsx(Stop, { offset: "0.19%", stopColor: "#0471E9" }),
|
|
8234
8223
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0377EF" })
|
|
8235
8224
|
] }),
|
|
8236
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: m.id, x1: "32.254%", x2: "68.003%", y1: "19.719%", y2: "84.908%", children: [
|
|
8225
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: m.id, x1: "32.254%", x2: "68.003%", y1: "19.719%", y2: "84.908%", children: [
|
|
8237
8226
|
/* @__PURE__ */ jsx(Stop, { offset: "27.65%", stopColor: "#0867DF" }),
|
|
8238
8227
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0471E9" })
|
|
8239
8228
|
] })
|
|
@@ -8454,7 +8443,7 @@ var Icon148 = memo((_a) => {
|
|
|
8454
8443
|
var _b = _a, { size = 24, style } = _b, rest = __objRest(_b, ["size", "style"]);
|
|
8455
8444
|
const { id, fill } = useFillId(TITLE49);
|
|
8456
8445
|
return /* @__PURE__ */ jsxs(Svg, __spreadProps(__spreadValues({ height: size, style, viewBox: "0 0 24 24", width: size }, rest), { children: [
|
|
8457
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { id, x1: "0%", x2: "100.182%", y1: "50.057%", y2: "50.057%", children: [
|
|
8446
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { id, x1: "0%", x2: "100.182%", y1: "50.057%", y2: "50.057%", children: [
|
|
8458
8447
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#E2167E" }),
|
|
8459
8448
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#FE603C" })
|
|
8460
8449
|
] }) }),
|
|
@@ -9141,11 +9130,11 @@ var Icon162 = memo((_a) => {
|
|
|
9141
9130
|
}
|
|
9142
9131
|
),
|
|
9143
9132
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
9144
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: a.id, x1: "34.383%", x2: "57.623%", y1: "37.415%", y2: "59.204%", children: [
|
|
9133
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: a.id, x1: "34.383%", x2: "57.623%", y1: "37.415%", y2: "59.204%", children: [
|
|
9145
9134
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#6595F1" }),
|
|
9146
9135
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#336BD7" })
|
|
9147
9136
|
] }),
|
|
9148
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: b.id, x1: "50%", x2: "50%", y1: "0%", y2: "100%", children: [
|
|
9137
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: b.id, x1: "50%", x2: "50%", y1: "0%", y2: "100%", children: [
|
|
9149
9138
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#6595F1" }),
|
|
9150
9139
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#336BD7" })
|
|
9151
9140
|
] })
|
|
@@ -9871,7 +9860,7 @@ var Icon178 = memo((_a) => {
|
|
|
9871
9860
|
fillRule: "nonzero"
|
|
9872
9861
|
}
|
|
9873
9862
|
),
|
|
9874
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { id, x1: "0%", x2: "100%", y1: "0%", y2: "0%", children: [
|
|
9863
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { id, x1: "0%", x2: "100%", y1: "0%", y2: "0%", children: [
|
|
9875
9864
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#6336E7", stopOpacity: ".84" }),
|
|
9876
9865
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#6F69F7", stopOpacity: ".84" })
|
|
9877
9866
|
] }) })
|
|
@@ -9953,7 +9942,7 @@ var Icon180 = memo((_a) => {
|
|
|
9953
9942
|
width: size
|
|
9954
9943
|
}, rest), {
|
|
9955
9944
|
children: [
|
|
9956
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { id: "a", x1: "100%", x2: "0%", y1: "53.893%", y2: "53.893%", children: [
|
|
9945
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { id: "a", x1: "100%", x2: "0%", y1: "53.893%", y2: "53.893%", children: [
|
|
9957
9946
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#1D1A5C" }),
|
|
9958
9947
|
/* @__PURE__ */ jsx(Stop, { offset: "49.6%", stopColor: "#3431C3" }),
|
|
9959
9948
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#7361F7" })
|
|
@@ -9989,7 +9978,7 @@ var Icon181 = memo((_a) => {
|
|
|
9989
9978
|
var _b = _a, { size = 24, style } = _b, rest = __objRest(_b, ["size", "style"]);
|
|
9990
9979
|
const { fill, id } = useFillId(TITLE62);
|
|
9991
9980
|
return /* @__PURE__ */ jsxs(Svg, __spreadProps(__spreadValues({ height: size, style, viewBox: "0 0 24 24", width: size }, rest), { children: [
|
|
9992
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { id, x1: "100%", x2: "0%", y1: "53.893%", y2: "53.893%", children: [
|
|
9981
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { id, x1: "100%", x2: "0%", y1: "53.893%", y2: "53.893%", children: [
|
|
9993
9982
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#1D1A5C" }),
|
|
9994
9983
|
/* @__PURE__ */ jsx(Stop, { offset: "49.6%", stopColor: "#3431C3" }),
|
|
9995
9984
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#7361F7" })
|
|
@@ -10818,7 +10807,7 @@ var Icon195 = memo((_a) => {
|
|
|
10818
10807
|
fill: "#E80000"
|
|
10819
10808
|
}
|
|
10820
10809
|
),
|
|
10821
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { id, x1: "50%", x2: "50%", y1: "0%", y2: "100%", children: [
|
|
10810
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { id, x1: "50%", x2: "50%", y1: "0%", y2: "100%", children: [
|
|
10822
10811
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#9D39FF" }),
|
|
10823
10812
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#A380FF" })
|
|
10824
10813
|
] }) })
|
|
@@ -10879,7 +10868,7 @@ var Icon197 = memo((_a) => {
|
|
|
10879
10868
|
fill: "#E80000"
|
|
10880
10869
|
}
|
|
10881
10870
|
),
|
|
10882
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { id, x1: "50%", x2: "50%", y1: "0%", y2: "100%", children: [
|
|
10871
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { id, x1: "50%", x2: "50%", y1: "0%", y2: "100%", children: [
|
|
10883
10872
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#9D39FF" }),
|
|
10884
10873
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#A380FF" })
|
|
10885
10874
|
] }) })
|
|
@@ -11000,7 +10989,7 @@ var Icon200 = memo((_a) => {
|
|
|
11000
10989
|
}
|
|
11001
10990
|
),
|
|
11002
10991
|
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(
|
|
11003
|
-
LinearGradient,
|
|
10992
|
+
LinearGradient$1,
|
|
11004
10993
|
{
|
|
11005
10994
|
gradientUnits: "userSpaceOnUse",
|
|
11006
10995
|
id,
|
|
@@ -11494,7 +11483,7 @@ var Icon211 = memo((_a) => {
|
|
|
11494
11483
|
fill
|
|
11495
11484
|
}
|
|
11496
11485
|
),
|
|
11497
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id, x1: "11.927", x2: "11.927", y2: "24", children: [
|
|
11486
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id, x1: "11.927", x2: "11.927", y2: "24", children: [
|
|
11498
11487
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#AEBCFE" }),
|
|
11499
11488
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#805DFA" })
|
|
11500
11489
|
] }) })
|
|
@@ -12018,7 +12007,7 @@ var Icon221 = memo((_a) => {
|
|
|
12018
12007
|
fill: "#012F8D"
|
|
12019
12008
|
}
|
|
12020
12009
|
),
|
|
12021
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { id, x1: "9.155%", x2: "90.531%", y1: "75.177%", y2: "25.028%", children: [
|
|
12010
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { id, x1: "9.155%", x2: "90.531%", y1: "75.177%", y2: "25.028%", children: [
|
|
12022
12011
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#0A51C3" }),
|
|
12023
12012
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#23A4FB" })
|
|
12024
12013
|
] }) })
|
|
@@ -12784,7 +12773,7 @@ var Icon232 = memo((_a) => {
|
|
|
12784
12773
|
/* @__PURE__ */ jsx(Path, { d: "M19.828 21.754l3.96-6.918L15.86 1H7.93l11.898 20.754z", fill: "#FF414C" }),
|
|
12785
12774
|
/* @__PURE__ */ jsx(Path, { d: "M3.965 7.914h7.93L3.969 21.75 0 14.836l3.965-6.922z", fill: "#FF414C" }),
|
|
12786
12775
|
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(
|
|
12787
|
-
LinearGradient,
|
|
12776
|
+
LinearGradient$1,
|
|
12788
12777
|
{
|
|
12789
12778
|
gradientUnits: "userSpaceOnUse",
|
|
12790
12779
|
id,
|
|
@@ -13126,7 +13115,7 @@ var Icon239 = memo((_a) => {
|
|
|
13126
13115
|
),
|
|
13127
13116
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
13128
13117
|
/* @__PURE__ */ jsxs(
|
|
13129
|
-
LinearGradient,
|
|
13118
|
+
LinearGradient$1,
|
|
13130
13119
|
{
|
|
13131
13120
|
gradientUnits: "userSpaceOnUse",
|
|
13132
13121
|
id: a.id,
|
|
@@ -13141,7 +13130,7 @@ var Icon239 = memo((_a) => {
|
|
|
13141
13130
|
}
|
|
13142
13131
|
),
|
|
13143
13132
|
/* @__PURE__ */ jsxs(
|
|
13144
|
-
LinearGradient,
|
|
13133
|
+
LinearGradient$1,
|
|
13145
13134
|
{
|
|
13146
13135
|
gradientUnits: "userSpaceOnUse",
|
|
13147
13136
|
id: b.id,
|
|
@@ -13159,7 +13148,7 @@ var Icon239 = memo((_a) => {
|
|
|
13159
13148
|
}
|
|
13160
13149
|
),
|
|
13161
13150
|
/* @__PURE__ */ jsxs(
|
|
13162
|
-
LinearGradient,
|
|
13151
|
+
LinearGradient$1,
|
|
13163
13152
|
{
|
|
13164
13153
|
gradientUnits: "userSpaceOnUse",
|
|
13165
13154
|
id: c.id,
|
|
@@ -13323,7 +13312,7 @@ var Icon242 = memo((_a) => {
|
|
|
13323
13312
|
),
|
|
13324
13313
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
13325
13314
|
/* @__PURE__ */ jsxs(
|
|
13326
|
-
LinearGradient,
|
|
13315
|
+
LinearGradient$1,
|
|
13327
13316
|
{
|
|
13328
13317
|
gradientUnits: "userSpaceOnUse",
|
|
13329
13318
|
id: a.id,
|
|
@@ -13348,7 +13337,7 @@ var Icon242 = memo((_a) => {
|
|
|
13348
13337
|
}
|
|
13349
13338
|
),
|
|
13350
13339
|
/* @__PURE__ */ jsxs(
|
|
13351
|
-
LinearGradient,
|
|
13340
|
+
LinearGradient$1,
|
|
13352
13341
|
{
|
|
13353
13342
|
gradientUnits: "userSpaceOnUse",
|
|
13354
13343
|
id: b.id,
|
|
@@ -13370,7 +13359,7 @@ var Icon242 = memo((_a) => {
|
|
|
13370
13359
|
}
|
|
13371
13360
|
),
|
|
13372
13361
|
/* @__PURE__ */ jsxs(
|
|
13373
|
-
LinearGradient,
|
|
13362
|
+
LinearGradient$1,
|
|
13374
13363
|
{
|
|
13375
13364
|
gradientUnits: "userSpaceOnUse",
|
|
13376
13365
|
id: c.id,
|
|
@@ -13566,7 +13555,7 @@ var Icon246 = memo((_a) => {
|
|
|
13566
13555
|
var _b = _a, { size = 24, style } = _b, rest = __objRest(_b, ["size", "style"]);
|
|
13567
13556
|
const { id, fill } = useFillId(TITLE83);
|
|
13568
13557
|
return /* @__PURE__ */ jsxs(Svg, __spreadProps(__spreadValues({ height: size, style, viewBox: "0 0 24 24", width: size }, rest), { children: [
|
|
13569
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { id, x1: "80%", x2: "20%", y1: "20%", y2: "80%", children: [
|
|
13558
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { id, x1: "80%", x2: "20%", y1: "20%", y2: "80%", children: [
|
|
13570
13559
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#6350FB" }),
|
|
13571
13560
|
/* @__PURE__ */ jsx(Stop, { offset: "50%", stopColor: "#3D8FFF" }),
|
|
13572
13561
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#9AD8F8" })
|
|
@@ -14372,7 +14361,7 @@ var Icon263 = memo((_a) => {
|
|
|
14372
14361
|
),
|
|
14373
14362
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
14374
14363
|
/* @__PURE__ */ jsxs(
|
|
14375
|
-
LinearGradient,
|
|
14364
|
+
LinearGradient$1,
|
|
14376
14365
|
{
|
|
14377
14366
|
gradientUnits: "userSpaceOnUse",
|
|
14378
14367
|
id: a.id,
|
|
@@ -14387,7 +14376,7 @@ var Icon263 = memo((_a) => {
|
|
|
14387
14376
|
}
|
|
14388
14377
|
),
|
|
14389
14378
|
/* @__PURE__ */ jsxs(
|
|
14390
|
-
LinearGradient,
|
|
14379
|
+
LinearGradient$1,
|
|
14391
14380
|
{
|
|
14392
14381
|
gradientUnits: "userSpaceOnUse",
|
|
14393
14382
|
id: b.id,
|
|
@@ -14539,7 +14528,7 @@ var Icon265 = memo((_a) => {
|
|
|
14539
14528
|
),
|
|
14540
14529
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
14541
14530
|
/* @__PURE__ */ jsxs(
|
|
14542
|
-
LinearGradient,
|
|
14531
|
+
LinearGradient$1,
|
|
14543
14532
|
{
|
|
14544
14533
|
gradientUnits: "userSpaceOnUse",
|
|
14545
14534
|
id: a.id,
|
|
@@ -14554,7 +14543,7 @@ var Icon265 = memo((_a) => {
|
|
|
14554
14543
|
}
|
|
14555
14544
|
),
|
|
14556
14545
|
/* @__PURE__ */ jsxs(
|
|
14557
|
-
LinearGradient,
|
|
14546
|
+
LinearGradient$1,
|
|
14558
14547
|
{
|
|
14559
14548
|
gradientUnits: "userSpaceOnUse",
|
|
14560
14549
|
id: b.id,
|
|
@@ -17411,7 +17400,7 @@ var Icon327 = memo((_a) => {
|
|
|
17411
17400
|
),
|
|
17412
17401
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
17413
17402
|
/* @__PURE__ */ jsxs(
|
|
17414
|
-
LinearGradient,
|
|
17403
|
+
LinearGradient$1,
|
|
17415
17404
|
{
|
|
17416
17405
|
gradientUnits: "userSpaceOnUse",
|
|
17417
17406
|
id: a.id,
|
|
@@ -17426,7 +17415,7 @@ var Icon327 = memo((_a) => {
|
|
|
17426
17415
|
}
|
|
17427
17416
|
),
|
|
17428
17417
|
/* @__PURE__ */ jsxs(
|
|
17429
|
-
LinearGradient,
|
|
17418
|
+
LinearGradient$1,
|
|
17430
17419
|
{
|
|
17431
17420
|
gradientUnits: "userSpaceOnUse",
|
|
17432
17421
|
id: b.id,
|
|
@@ -17441,7 +17430,7 @@ var Icon327 = memo((_a) => {
|
|
|
17441
17430
|
}
|
|
17442
17431
|
),
|
|
17443
17432
|
/* @__PURE__ */ jsxs(
|
|
17444
|
-
LinearGradient,
|
|
17433
|
+
LinearGradient$1,
|
|
17445
17434
|
{
|
|
17446
17435
|
gradientUnits: "userSpaceOnUse",
|
|
17447
17436
|
id: c.id,
|
|
@@ -18843,17 +18832,17 @@ var Icon350 = memo((_a) => {
|
|
|
18843
18832
|
}
|
|
18844
18833
|
),
|
|
18845
18834
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
18846
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: a.id, x1: "32.052%", x2: "60.95%", y1: "95.551%", y2: "-.348%", children: [
|
|
18835
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: a.id, x1: "32.052%", x2: "60.95%", y1: "95.551%", y2: "-.348%", children: [
|
|
18847
18836
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#06F" }),
|
|
18848
18837
|
/* @__PURE__ */ jsx(Stop, { offset: "20%", stopColor: "#1677FF" }),
|
|
18849
18838
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#04A6FF" })
|
|
18850
18839
|
] }),
|
|
18851
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: b.id, x1: "6.029%", x2: "92.742%", y1: "65.982%", y2: "32.918%", children: [
|
|
18840
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: b.id, x1: "6.029%", x2: "92.742%", y1: "65.982%", y2: "32.918%", children: [
|
|
18852
18841
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#06F" }),
|
|
18853
18842
|
/* @__PURE__ */ jsx(Stop, { offset: "20%", stopColor: "#1677FF" }),
|
|
18854
18843
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#04A6FF" })
|
|
18855
18844
|
] }),
|
|
18856
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: c.id, x1: "56.027%", x2: "46.133%", y1: "99.257%", y2: "1.384%", children: [
|
|
18845
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: c.id, x1: "56.027%", x2: "46.133%", y1: "99.257%", y2: "1.384%", children: [
|
|
18857
18846
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#06F" }),
|
|
18858
18847
|
/* @__PURE__ */ jsx(Stop, { offset: "20%", stopColor: "#1677FF" }),
|
|
18859
18848
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#04A6FF" })
|
|
@@ -18941,17 +18930,17 @@ var Icon352 = memo((_a) => {
|
|
|
18941
18930
|
}
|
|
18942
18931
|
),
|
|
18943
18932
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
18944
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: a.id, x1: "31.373%", x2: "61.365%", y1: "95.551%", y2: "-.348%", children: [
|
|
18933
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: a.id, x1: "31.373%", x2: "61.365%", y1: "95.551%", y2: "-.348%", children: [
|
|
18945
18934
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#06F" }),
|
|
18946
18935
|
/* @__PURE__ */ jsx(Stop, { offset: "20%", stopColor: "#1677FF" }),
|
|
18947
18936
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#04A6FF" })
|
|
18948
18937
|
] }),
|
|
18949
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: b.id, x1: "4.366%", x2: "94.359%", y1: "65.982%", y2: "32.918%", children: [
|
|
18938
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: b.id, x1: "4.366%", x2: "94.359%", y1: "65.982%", y2: "32.918%", children: [
|
|
18950
18939
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#06F" }),
|
|
18951
18940
|
/* @__PURE__ */ jsx(Stop, { offset: "20%", stopColor: "#1677FF" }),
|
|
18952
18941
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#04A6FF" })
|
|
18953
18942
|
] }),
|
|
18954
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: c.id, x1: "56.255%", x2: "45.986%", y1: "99.257%", y2: "1.384%", children: [
|
|
18943
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: c.id, x1: "56.255%", x2: "45.986%", y1: "99.257%", y2: "1.384%", children: [
|
|
18955
18944
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#06F" }),
|
|
18956
18945
|
/* @__PURE__ */ jsx(Stop, { offset: "20%", stopColor: "#1677FF" }),
|
|
18957
18946
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#04A6FF" })
|
|
@@ -19881,7 +19870,7 @@ var Icon374 = memo((_a) => {
|
|
|
19881
19870
|
]
|
|
19882
19871
|
}
|
|
19883
19872
|
),
|
|
19884
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: c.id, x1: "50%", x2: "50%", y1: "0%", y2: "100%", children: [
|
|
19873
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: c.id, x1: "50%", x2: "50%", y1: "0%", y2: "100%", children: [
|
|
19885
19874
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#00BBEC" }),
|
|
19886
19875
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#2756A9" })
|
|
19887
19876
|
] })
|
|
@@ -20461,12 +20450,12 @@ var Icon386 = memo((_a) => {
|
|
|
20461
20450
|
}
|
|
20462
20451
|
),
|
|
20463
20452
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
20464
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "12", x2: "12", y1: "0", y2: "24", children: [
|
|
20453
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "12", x2: "12", y1: "0", y2: "24", children: [
|
|
20465
20454
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#1281F4" }),
|
|
20466
20455
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#0821C6" })
|
|
20467
20456
|
] }),
|
|
20468
20457
|
/* @__PURE__ */ jsxs(
|
|
20469
|
-
LinearGradient,
|
|
20458
|
+
LinearGradient$1,
|
|
20470
20459
|
{
|
|
20471
20460
|
gradientUnits: "userSpaceOnUse",
|
|
20472
20461
|
id: b.id,
|
|
@@ -20991,7 +20980,7 @@ var Icon394 = memo((_a) => {
|
|
|
20991
20980
|
),
|
|
20992
20981
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
20993
20982
|
/* @__PURE__ */ jsxs(
|
|
20994
|
-
LinearGradient,
|
|
20983
|
+
LinearGradient$1,
|
|
20995
20984
|
{
|
|
20996
20985
|
gradientUnits: "userSpaceOnUse",
|
|
20997
20986
|
id: a.id,
|
|
@@ -21006,7 +20995,7 @@ var Icon394 = memo((_a) => {
|
|
|
21006
20995
|
}
|
|
21007
20996
|
),
|
|
21008
20997
|
/* @__PURE__ */ jsxs(
|
|
21009
|
-
LinearGradient,
|
|
20998
|
+
LinearGradient$1,
|
|
21010
20999
|
{
|
|
21011
21000
|
gradientUnits: "userSpaceOnUse",
|
|
21012
21001
|
id: b.id,
|
|
@@ -21021,7 +21010,7 @@ var Icon394 = memo((_a) => {
|
|
|
21021
21010
|
}
|
|
21022
21011
|
),
|
|
21023
21012
|
/* @__PURE__ */ jsxs(
|
|
21024
|
-
LinearGradient,
|
|
21013
|
+
LinearGradient$1,
|
|
21025
21014
|
{
|
|
21026
21015
|
gradientUnits: "userSpaceOnUse",
|
|
21027
21016
|
id: c.id,
|
|
@@ -21039,7 +21028,7 @@ var Icon394 = memo((_a) => {
|
|
|
21039
21028
|
}
|
|
21040
21029
|
),
|
|
21041
21030
|
/* @__PURE__ */ jsxs(
|
|
21042
|
-
LinearGradient,
|
|
21031
|
+
LinearGradient$1,
|
|
21043
21032
|
{
|
|
21044
21033
|
gradientUnits: "userSpaceOnUse",
|
|
21045
21034
|
id: d.id,
|
|
@@ -21057,7 +21046,7 @@ var Icon394 = memo((_a) => {
|
|
|
21057
21046
|
}
|
|
21058
21047
|
),
|
|
21059
21048
|
/* @__PURE__ */ jsxs(
|
|
21060
|
-
LinearGradient,
|
|
21049
|
+
LinearGradient$1,
|
|
21061
21050
|
{
|
|
21062
21051
|
gradientUnits: "userSpaceOnUse",
|
|
21063
21052
|
id: e.id,
|
|
@@ -21075,7 +21064,7 @@ var Icon394 = memo((_a) => {
|
|
|
21075
21064
|
}
|
|
21076
21065
|
),
|
|
21077
21066
|
/* @__PURE__ */ jsxs(
|
|
21078
|
-
LinearGradient,
|
|
21067
|
+
LinearGradient$1,
|
|
21079
21068
|
{
|
|
21080
21069
|
gradientUnits: "userSpaceOnUse",
|
|
21081
21070
|
id: f.id,
|
|
@@ -21092,7 +21081,7 @@ var Icon394 = memo((_a) => {
|
|
|
21092
21081
|
}
|
|
21093
21082
|
),
|
|
21094
21083
|
/* @__PURE__ */ jsxs(
|
|
21095
|
-
LinearGradient,
|
|
21084
|
+
LinearGradient$1,
|
|
21096
21085
|
{
|
|
21097
21086
|
gradientUnits: "userSpaceOnUse",
|
|
21098
21087
|
id: g.id,
|
|
@@ -21109,7 +21098,7 @@ var Icon394 = memo((_a) => {
|
|
|
21109
21098
|
}
|
|
21110
21099
|
),
|
|
21111
21100
|
/* @__PURE__ */ jsxs(
|
|
21112
|
-
LinearGradient,
|
|
21101
|
+
LinearGradient$1,
|
|
21113
21102
|
{
|
|
21114
21103
|
gradientUnits: "userSpaceOnUse",
|
|
21115
21104
|
id: h.id,
|
|
@@ -21126,7 +21115,7 @@ var Icon394 = memo((_a) => {
|
|
|
21126
21115
|
}
|
|
21127
21116
|
),
|
|
21128
21117
|
/* @__PURE__ */ jsxs(
|
|
21129
|
-
LinearGradient,
|
|
21118
|
+
LinearGradient$1,
|
|
21130
21119
|
{
|
|
21131
21120
|
gradientUnits: "userSpaceOnUse",
|
|
21132
21121
|
id: i.id,
|
|
@@ -21143,7 +21132,7 @@ var Icon394 = memo((_a) => {
|
|
|
21143
21132
|
}
|
|
21144
21133
|
),
|
|
21145
21134
|
/* @__PURE__ */ jsxs(
|
|
21146
|
-
LinearGradient,
|
|
21135
|
+
LinearGradient$1,
|
|
21147
21136
|
{
|
|
21148
21137
|
gradientUnits: "userSpaceOnUse",
|
|
21149
21138
|
id: j.id,
|
|
@@ -21160,7 +21149,7 @@ var Icon394 = memo((_a) => {
|
|
|
21160
21149
|
}
|
|
21161
21150
|
),
|
|
21162
21151
|
/* @__PURE__ */ jsxs(
|
|
21163
|
-
LinearGradient,
|
|
21152
|
+
LinearGradient$1,
|
|
21164
21153
|
{
|
|
21165
21154
|
gradientUnits: "userSpaceOnUse",
|
|
21166
21155
|
id: k.id,
|
|
@@ -21177,7 +21166,7 @@ var Icon394 = memo((_a) => {
|
|
|
21177
21166
|
}
|
|
21178
21167
|
),
|
|
21179
21168
|
/* @__PURE__ */ jsxs(
|
|
21180
|
-
LinearGradient,
|
|
21169
|
+
LinearGradient$1,
|
|
21181
21170
|
{
|
|
21182
21171
|
gradientUnits: "userSpaceOnUse",
|
|
21183
21172
|
id: l.id,
|
|
@@ -21195,7 +21184,7 @@ var Icon394 = memo((_a) => {
|
|
|
21195
21184
|
}
|
|
21196
21185
|
),
|
|
21197
21186
|
/* @__PURE__ */ jsxs(
|
|
21198
|
-
LinearGradient,
|
|
21187
|
+
LinearGradient$1,
|
|
21199
21188
|
{
|
|
21200
21189
|
gradientUnits: "userSpaceOnUse",
|
|
21201
21190
|
id: m.id,
|
|
@@ -21213,7 +21202,7 @@ var Icon394 = memo((_a) => {
|
|
|
21213
21202
|
}
|
|
21214
21203
|
),
|
|
21215
21204
|
/* @__PURE__ */ jsxs(
|
|
21216
|
-
LinearGradient,
|
|
21205
|
+
LinearGradient$1,
|
|
21217
21206
|
{
|
|
21218
21207
|
gradientUnits: "userSpaceOnUse",
|
|
21219
21208
|
id: n.id,
|
|
@@ -21231,7 +21220,7 @@ var Icon394 = memo((_a) => {
|
|
|
21231
21220
|
}
|
|
21232
21221
|
),
|
|
21233
21222
|
/* @__PURE__ */ jsxs(
|
|
21234
|
-
LinearGradient,
|
|
21223
|
+
LinearGradient$1,
|
|
21235
21224
|
{
|
|
21236
21225
|
gradientUnits: "userSpaceOnUse",
|
|
21237
21226
|
id: o.id,
|
|
@@ -21249,7 +21238,7 @@ var Icon394 = memo((_a) => {
|
|
|
21249
21238
|
}
|
|
21250
21239
|
),
|
|
21251
21240
|
/* @__PURE__ */ jsxs(
|
|
21252
|
-
LinearGradient,
|
|
21241
|
+
LinearGradient$1,
|
|
21253
21242
|
{
|
|
21254
21243
|
gradientUnits: "userSpaceOnUse",
|
|
21255
21244
|
id: p.id,
|
|
@@ -21267,7 +21256,7 @@ var Icon394 = memo((_a) => {
|
|
|
21267
21256
|
}
|
|
21268
21257
|
),
|
|
21269
21258
|
/* @__PURE__ */ jsxs(
|
|
21270
|
-
LinearGradient,
|
|
21259
|
+
LinearGradient$1,
|
|
21271
21260
|
{
|
|
21272
21261
|
gradientUnits: "userSpaceOnUse",
|
|
21273
21262
|
id: q.id,
|
|
@@ -22000,17 +21989,17 @@ var Icon409 = memo((_a) => {
|
|
|
22000
21989
|
]
|
|
22001
21990
|
}
|
|
22002
21991
|
),
|
|
22003
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: c.id, x1: "39.465%", x2: "46.884%", y1: "12.117%", y2: "103.774%", children: [
|
|
21992
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: c.id, x1: "39.465%", x2: "46.884%", y1: "12.117%", y2: "103.774%", children: [
|
|
22004
21993
|
/* @__PURE__ */ jsx(Stop, { offset: "15.6%", stopColor: "#0D91E1" }),
|
|
22005
21994
|
/* @__PURE__ */ jsx(Stop, { offset: "48.7%", stopColor: "#52B471" }),
|
|
22006
21995
|
/* @__PURE__ */ jsx(Stop, { offset: "65.2%", stopColor: "#98BD42" }),
|
|
22007
21996
|
/* @__PURE__ */ jsx(Stop, { offset: "93.7%", stopColor: "#FFC800" })
|
|
22008
21997
|
] }),
|
|
22009
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: d.id, x1: "45.949%", x2: "50%", y1: "0%", y2: "100%", children: [
|
|
21998
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: d.id, x1: "45.949%", x2: "50%", y1: "0%", y2: "100%", children: [
|
|
22010
21999
|
/* @__PURE__ */ jsx(Stop, { offset: "0%", stopColor: "#3DCBFF" }),
|
|
22011
22000
|
/* @__PURE__ */ jsx(Stop, { offset: "24.7%", stopColor: "#0588F7", stopOpacity: "0" })
|
|
22012
22001
|
] }),
|
|
22013
|
-
/* @__PURE__ */ jsxs(LinearGradient, { id: f.id, x1: "83.507%", x2: "83.453%", y1: "-6.106%", y2: "21.131%", children: [
|
|
22002
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { id: f.id, x1: "83.507%", x2: "83.453%", y1: "-6.106%", y2: "21.131%", children: [
|
|
22014
22003
|
/* @__PURE__ */ jsx(Stop, { offset: "5.8%", stopColor: "#F8ADFA" }),
|
|
22015
22004
|
/* @__PURE__ */ jsx(Stop, { offset: "70.8%", stopColor: "#A86EDD", stopOpacity: "0" })
|
|
22016
22005
|
] })
|
|
@@ -22170,7 +22159,7 @@ var Icon412 = memo((_a) => {
|
|
|
22170
22159
|
),
|
|
22171
22160
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
22172
22161
|
/* @__PURE__ */ jsxs(
|
|
22173
|
-
LinearGradient,
|
|
22162
|
+
LinearGradient$1,
|
|
22174
22163
|
{
|
|
22175
22164
|
gradientUnits: "userSpaceOnUse",
|
|
22176
22165
|
id: a.id,
|
|
@@ -22185,7 +22174,7 @@ var Icon412 = memo((_a) => {
|
|
|
22185
22174
|
}
|
|
22186
22175
|
),
|
|
22187
22176
|
/* @__PURE__ */ jsxs(
|
|
22188
|
-
LinearGradient,
|
|
22177
|
+
LinearGradient$1,
|
|
22189
22178
|
{
|
|
22190
22179
|
gradientUnits: "userSpaceOnUse",
|
|
22191
22180
|
id: b.id,
|
|
@@ -22200,7 +22189,7 @@ var Icon412 = memo((_a) => {
|
|
|
22200
22189
|
}
|
|
22201
22190
|
),
|
|
22202
22191
|
/* @__PURE__ */ jsxs(
|
|
22203
|
-
LinearGradient,
|
|
22192
|
+
LinearGradient$1,
|
|
22204
22193
|
{
|
|
22205
22194
|
gradientUnits: "userSpaceOnUse",
|
|
22206
22195
|
id: c.id,
|
|
@@ -22215,7 +22204,7 @@ var Icon412 = memo((_a) => {
|
|
|
22215
22204
|
}
|
|
22216
22205
|
),
|
|
22217
22206
|
/* @__PURE__ */ jsxs(
|
|
22218
|
-
LinearGradient,
|
|
22207
|
+
LinearGradient$1,
|
|
22219
22208
|
{
|
|
22220
22209
|
gradientUnits: "userSpaceOnUse",
|
|
22221
22210
|
id: d.id,
|
|
@@ -22840,7 +22829,7 @@ var Icon425 = memo((_a) => {
|
|
|
22840
22829
|
}
|
|
22841
22830
|
),
|
|
22842
22831
|
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(
|
|
22843
|
-
LinearGradient,
|
|
22832
|
+
LinearGradient$1,
|
|
22844
22833
|
{
|
|
22845
22834
|
gradientUnits: "userSpaceOnUse",
|
|
22846
22835
|
id,
|
|
@@ -22895,7 +22884,7 @@ var Icon426 = memo((_a) => {
|
|
|
22895
22884
|
}
|
|
22896
22885
|
),
|
|
22897
22886
|
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(
|
|
22898
|
-
LinearGradient,
|
|
22887
|
+
LinearGradient$1,
|
|
22899
22888
|
{
|
|
22900
22889
|
gradientUnits: "userSpaceOnUse",
|
|
22901
22890
|
id: "a",
|
|
@@ -22990,7 +22979,7 @@ var Icon428 = memo((_a) => {
|
|
|
22990
22979
|
/* @__PURE__ */ jsx(Path, { d: "M22.35 6l-10.425 6L1.5 6h20.85z", fill }),
|
|
22991
22980
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
22992
22981
|
/* @__PURE__ */ jsxs(
|
|
22993
|
-
LinearGradient,
|
|
22982
|
+
LinearGradient$1,
|
|
22994
22983
|
{
|
|
22995
22984
|
gradientUnits: "userSpaceOnUse",
|
|
22996
22985
|
id: a.id,
|
|
@@ -23005,7 +22994,7 @@ var Icon428 = memo((_a) => {
|
|
|
23005
22994
|
}
|
|
23006
22995
|
),
|
|
23007
22996
|
/* @__PURE__ */ jsxs(
|
|
23008
|
-
LinearGradient,
|
|
22997
|
+
LinearGradient$1,
|
|
23009
22998
|
{
|
|
23010
22999
|
gradientUnits: "userSpaceOnUse",
|
|
23011
23000
|
id: b.id,
|
|
@@ -23020,7 +23009,7 @@ var Icon428 = memo((_a) => {
|
|
|
23020
23009
|
}
|
|
23021
23010
|
),
|
|
23022
23011
|
/* @__PURE__ */ jsxs(
|
|
23023
|
-
LinearGradient,
|
|
23012
|
+
LinearGradient$1,
|
|
23024
23013
|
{
|
|
23025
23014
|
gradientUnits: "userSpaceOnUse",
|
|
23026
23015
|
id: c.id,
|
|
@@ -24208,7 +24197,7 @@ var Icon454 = memo((_a) => {
|
|
|
24208
24197
|
),
|
|
24209
24198
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
24210
24199
|
/* @__PURE__ */ jsxs(
|
|
24211
|
-
LinearGradient,
|
|
24200
|
+
LinearGradient$1,
|
|
24212
24201
|
{
|
|
24213
24202
|
gradientUnits: "userSpaceOnUse",
|
|
24214
24203
|
id: a.id,
|
|
@@ -24223,7 +24212,7 @@ var Icon454 = memo((_a) => {
|
|
|
24223
24212
|
}
|
|
24224
24213
|
),
|
|
24225
24214
|
/* @__PURE__ */ jsxs(
|
|
24226
|
-
LinearGradient,
|
|
24215
|
+
LinearGradient$1,
|
|
24227
24216
|
{
|
|
24228
24217
|
gradientUnits: "userSpaceOnUse",
|
|
24229
24218
|
id: b.id,
|
|
@@ -25292,7 +25281,7 @@ var Icon477 = memo((_a) => {
|
|
|
25292
25281
|
),
|
|
25293
25282
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
25294
25283
|
/* @__PURE__ */ jsxs(
|
|
25295
|
-
LinearGradient,
|
|
25284
|
+
LinearGradient$1,
|
|
25296
25285
|
{
|
|
25297
25286
|
gradientUnits: "userSpaceOnUse",
|
|
25298
25287
|
id: a.id,
|
|
@@ -25307,7 +25296,7 @@ var Icon477 = memo((_a) => {
|
|
|
25307
25296
|
}
|
|
25308
25297
|
),
|
|
25309
25298
|
/* @__PURE__ */ jsxs(
|
|
25310
|
-
LinearGradient,
|
|
25299
|
+
LinearGradient$1,
|
|
25311
25300
|
{
|
|
25312
25301
|
gradientUnits: "userSpaceOnUse",
|
|
25313
25302
|
id: b.id,
|
|
@@ -25322,7 +25311,7 @@ var Icon477 = memo((_a) => {
|
|
|
25322
25311
|
}
|
|
25323
25312
|
),
|
|
25324
25313
|
/* @__PURE__ */ jsxs(
|
|
25325
|
-
LinearGradient,
|
|
25314
|
+
LinearGradient$1,
|
|
25326
25315
|
{
|
|
25327
25316
|
gradientUnits: "userSpaceOnUse",
|
|
25328
25317
|
id: c.id,
|
|
@@ -25580,7 +25569,7 @@ var Icon483 = memo((_a) => {
|
|
|
25580
25569
|
}
|
|
25581
25570
|
),
|
|
25582
25571
|
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(
|
|
25583
|
-
LinearGradient,
|
|
25572
|
+
LinearGradient$1,
|
|
25584
25573
|
{
|
|
25585
25574
|
gradientUnits: "userSpaceOnUse",
|
|
25586
25575
|
id,
|
|
@@ -26396,7 +26385,7 @@ var Icon501 = memo((_a) => {
|
|
|
26396
26385
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
26397
26386
|
/* @__PURE__ */ jsx(ClipPath, { id: a.id, children: /* @__PURE__ */ jsx(Path, { d: "M5.25711 1.80765C8.76812 6.74075 14.4314 9.45056 20.0636 8.40323C20.4619 8.32917 20.8947 8.19661 21.3451 8.02311C22.2001 7.69374 23.3197 9.03389 22.6709 9.68084C22.2415 10.1091 21.8312 10.5013 21.4634 10.8278C18.9269 13.0793 16.1264 15.1096 13.0744 16.8717C10.003 18.6449 6.8237 20.0618 3.58429 21.1352C3.13145 21.2853 2.60446 21.4391 2.038 21.5917C1.15348 21.8301 0.554197 20.1919 1.2674 19.617C1.6464 19.3114 1.98071 19.0005 2.246 18.6902C5.96908 14.3363 6.29888 8.17371 3.71732 2.69665C3.6056 2.45961 3.48162 2.17153 3.35287 1.85684C2.99465 0.981289 4.04156 0.335123 4.65576 1.05462C4.89891 1.33945 5.10904 1.5996 5.25711 1.80765Z" }) }),
|
|
26398
26387
|
/* @__PURE__ */ jsx(ClipPath, { id: c.id, children: /* @__PURE__ */ jsx(Path, { d: "M19.529 13.6948C17.2056 16.5579 16.7138 19.6388 17.1514 22.2781C17.1594 22.3264 17.1678 22.3799 17.1763 22.4375C17.2926 23.2284 16.3596 23.7154 15.7279 23.2254C15.6957 23.2004 15.6645 23.1765 15.6347 23.1538C13.5149 21.5401 11.0142 20.326 7.68635 20.7079C9.70085 20.1175 11.7605 19.243 13.7728 18.0812C15.9822 16.8056 17.9201 15.3074 19.529 13.6948Z" }) }),
|
|
26399
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: b.id, x1: "0", x2: "500", y1: "0", y2: "500", children: [
|
|
26388
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: b.id, x1: "0", x2: "500", y1: "0", y2: "500", children: [
|
|
26400
26389
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#27B2F0" }),
|
|
26401
26390
|
/* @__PURE__ */ jsx(Stop, { offset: "20.3%", stopColor: "#26DFFB" }),
|
|
26402
26391
|
/* @__PURE__ */ jsx(Stop, { offset: "40.6%", stopColor: "#30F5FE" }),
|
|
@@ -26404,7 +26393,7 @@ var Icon501 = memo((_a) => {
|
|
|
26404
26393
|
/* @__PURE__ */ jsx(Stop, { offset: "86.3%", stopColor: "#FBC610" }),
|
|
26405
26394
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#FD9C22" })
|
|
26406
26395
|
] }),
|
|
26407
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: d.id, x1: "0", x2: "500", y1: "0", y2: "500", children: [
|
|
26396
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: d.id, x1: "0", x2: "500", y1: "0", y2: "500", children: [
|
|
26408
26397
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#1C6FFF" }),
|
|
26409
26398
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#24B5EF" })
|
|
26410
26399
|
] })
|
|
@@ -26799,7 +26788,7 @@ var Icon508 = memo((_a) => {
|
|
|
26799
26788
|
}
|
|
26800
26789
|
),
|
|
26801
26790
|
/* @__PURE__ */ jsxs(
|
|
26802
|
-
LinearGradient,
|
|
26791
|
+
LinearGradient$1,
|
|
26803
26792
|
{
|
|
26804
26793
|
gradientUnits: "userSpaceOnUse",
|
|
26805
26794
|
id: c.id,
|
|
@@ -26814,7 +26803,7 @@ var Icon508 = memo((_a) => {
|
|
|
26814
26803
|
}
|
|
26815
26804
|
),
|
|
26816
26805
|
/* @__PURE__ */ jsxs(
|
|
26817
|
-
LinearGradient,
|
|
26806
|
+
LinearGradient$1,
|
|
26818
26807
|
{
|
|
26819
26808
|
gradientUnits: "userSpaceOnUse",
|
|
26820
26809
|
id: d.id,
|
|
@@ -28028,7 +28017,7 @@ var Icon536 = memo((_a) => {
|
|
|
28028
28017
|
}
|
|
28029
28018
|
),
|
|
28030
28019
|
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(
|
|
28031
|
-
LinearGradient,
|
|
28020
|
+
LinearGradient$1,
|
|
28032
28021
|
{
|
|
28033
28022
|
gradientUnits: "userSpaceOnUse",
|
|
28034
28023
|
id,
|
|
@@ -28324,16 +28313,16 @@ var Icon542 = memo((_a) => {
|
|
|
28324
28313
|
/* @__PURE__ */ jsx(Path, { d: "M12.392 24L2 18l10.392-6 10.393 6-10.393 6z", fill: d.fill }),
|
|
28325
28314
|
/* @__PURE__ */ jsx(Path, { d: "M2 5.999L12.392 0v24L2 18V5.999z", fill: e.fill }),
|
|
28326
28315
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
28327
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "2", x2: "22.785", y1: "18", y2: "18", children: [
|
|
28316
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "2", x2: "22.785", y1: "18", y2: "18", children: [
|
|
28328
28317
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#00A" }),
|
|
28329
28318
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#A78DFF" })
|
|
28330
28319
|
] }),
|
|
28331
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: b.id, x1: "2", x2: "22.785", y1: "18", y2: "18", children: [
|
|
28320
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: b.id, x1: "2", x2: "22.785", y1: "18", y2: "18", children: [
|
|
28332
28321
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#00A" }),
|
|
28333
28322
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#A78DFF" })
|
|
28334
28323
|
] }),
|
|
28335
28324
|
/* @__PURE__ */ jsxs(
|
|
28336
|
-
LinearGradient,
|
|
28325
|
+
LinearGradient$1,
|
|
28337
28326
|
{
|
|
28338
28327
|
gradientUnits: "userSpaceOnUse",
|
|
28339
28328
|
id: c.id,
|
|
@@ -28347,12 +28336,12 @@ var Icon542 = memo((_a) => {
|
|
|
28347
28336
|
]
|
|
28348
28337
|
}
|
|
28349
28338
|
),
|
|
28350
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: d.id, x1: "2", x2: "22.785", y1: "18", y2: "18", children: [
|
|
28339
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: d.id, x1: "2", x2: "22.785", y1: "18", y2: "18", children: [
|
|
28351
28340
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#00A" }),
|
|
28352
28341
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#A78DFF" })
|
|
28353
28342
|
] }),
|
|
28354
28343
|
/* @__PURE__ */ jsxs(
|
|
28355
|
-
LinearGradient,
|
|
28344
|
+
LinearGradient$1,
|
|
28356
28345
|
{
|
|
28357
28346
|
gradientUnits: "userSpaceOnUse",
|
|
28358
28347
|
id: e.id,
|
|
@@ -28647,20 +28636,20 @@ var Icon548 = memo((_a) => {
|
|
|
28647
28636
|
}
|
|
28648
28637
|
),
|
|
28649
28638
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
28650
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "1.5", x2: "12", y1: "19.5", y2: "0", children: [
|
|
28639
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "1.5", x2: "12", y1: "19.5", y2: "0", children: [
|
|
28651
28640
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#F0F" }),
|
|
28652
28641
|
/* @__PURE__ */ jsx(Stop, { offset: "17%", stopColor: "#E90CF9" }),
|
|
28653
28642
|
/* @__PURE__ */ jsx(Stop, { offset: "54%", stopColor: "#C023ED" }),
|
|
28654
28643
|
/* @__PURE__ */ jsx(Stop, { offset: "73%", stopColor: "#B02DE9" }),
|
|
28655
28644
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#B02DE9" })
|
|
28656
28645
|
] }),
|
|
28657
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: b.id, x1: "0", x2: "24", y1: "24", y2: "0", children: [
|
|
28646
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: b.id, x1: "0", x2: "24", y1: "24", y2: "0", children: [
|
|
28658
28647
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#B02DE9" }),
|
|
28659
28648
|
/* @__PURE__ */ jsx(Stop, { offset: "2%", stopColor: "#B02DE9" }),
|
|
28660
28649
|
/* @__PURE__ */ jsx(Stop, { offset: "80%", stopColor: "#6D00CC" }),
|
|
28661
28650
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#6D00CC" })
|
|
28662
28651
|
] }),
|
|
28663
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: c.id, x1: "0", x2: "24", y1: "24", y2: "0", children: [
|
|
28652
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: c.id, x1: "0", x2: "24", y1: "24", y2: "0", children: [
|
|
28664
28653
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#F0F" }),
|
|
28665
28654
|
/* @__PURE__ */ jsx(Stop, { offset: "2%", stopColor: "#F0F" }),
|
|
28666
28655
|
/* @__PURE__ */ jsx(Stop, { offset: "9%", stopColor: "#E90CF9" }),
|
|
@@ -29204,7 +29193,7 @@ var Icon559 = memo((_a) => {
|
|
|
29204
29193
|
}
|
|
29205
29194
|
) }),
|
|
29206
29195
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
29207
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: c.id, x1: "24", x2: "0", y1: "0", y2: "24", children: [
|
|
29196
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: c.id, x1: "24", x2: "0", y1: "0", y2: "24", children: [
|
|
29208
29197
|
/* @__PURE__ */ jsx(Stop, { offset: "13%", stopColor: "#FF97E3" }),
|
|
29209
29198
|
/* @__PURE__ */ jsx(Stop, { offset: "18%", stopColor: "#D14FE1" }),
|
|
29210
29199
|
/* @__PURE__ */ jsx(Stop, { offset: "33.8%", stopColor: "#0050E2" }),
|
|
@@ -29589,7 +29578,7 @@ var Icon567 = memo((_a) => {
|
|
|
29589
29578
|
}
|
|
29590
29579
|
),
|
|
29591
29580
|
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(
|
|
29592
|
-
LinearGradient,
|
|
29581
|
+
LinearGradient$1,
|
|
29593
29582
|
{
|
|
29594
29583
|
gradientUnits: "userSpaceOnUse",
|
|
29595
29584
|
id,
|
|
@@ -29694,7 +29683,7 @@ var Icon569 = memo((_a) => {
|
|
|
29694
29683
|
),
|
|
29695
29684
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
29696
29685
|
/* @__PURE__ */ jsxs(
|
|
29697
|
-
LinearGradient,
|
|
29686
|
+
LinearGradient$1,
|
|
29698
29687
|
{
|
|
29699
29688
|
gradientUnits: "userSpaceOnUse",
|
|
29700
29689
|
id: a.id,
|
|
@@ -29709,7 +29698,7 @@ var Icon569 = memo((_a) => {
|
|
|
29709
29698
|
}
|
|
29710
29699
|
),
|
|
29711
29700
|
/* @__PURE__ */ jsxs(
|
|
29712
|
-
LinearGradient,
|
|
29701
|
+
LinearGradient$1,
|
|
29713
29702
|
{
|
|
29714
29703
|
gradientUnits: "userSpaceOnUse",
|
|
29715
29704
|
id: b.id,
|
|
@@ -29972,7 +29961,7 @@ var Icon575 = memo((_a) => {
|
|
|
29972
29961
|
),
|
|
29973
29962
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
29974
29963
|
/* @__PURE__ */ jsxs(
|
|
29975
|
-
LinearGradient,
|
|
29964
|
+
LinearGradient$1,
|
|
29976
29965
|
{
|
|
29977
29966
|
gradientUnits: "userSpaceOnUse",
|
|
29978
29967
|
id: a.id,
|
|
@@ -29987,7 +29976,7 @@ var Icon575 = memo((_a) => {
|
|
|
29987
29976
|
}
|
|
29988
29977
|
),
|
|
29989
29978
|
/* @__PURE__ */ jsxs(
|
|
29990
|
-
LinearGradient,
|
|
29979
|
+
LinearGradient$1,
|
|
29991
29980
|
{
|
|
29992
29981
|
gradientUnits: "userSpaceOnUse",
|
|
29993
29982
|
id: b.id,
|
|
@@ -30002,7 +29991,7 @@ var Icon575 = memo((_a) => {
|
|
|
30002
29991
|
}
|
|
30003
29992
|
),
|
|
30004
29993
|
/* @__PURE__ */ jsxs(
|
|
30005
|
-
LinearGradient,
|
|
29994
|
+
LinearGradient$1,
|
|
30006
29995
|
{
|
|
30007
29996
|
gradientUnits: "userSpaceOnUse",
|
|
30008
29997
|
id: c.id,
|
|
@@ -30430,7 +30419,7 @@ var Icon583 = memo((_a) => {
|
|
|
30430
30419
|
),
|
|
30431
30420
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
30432
30421
|
/* @__PURE__ */ jsxs(
|
|
30433
|
-
LinearGradient,
|
|
30422
|
+
LinearGradient$1,
|
|
30434
30423
|
{
|
|
30435
30424
|
gradientUnits: "userSpaceOnUse",
|
|
30436
30425
|
id: a.id,
|
|
@@ -30448,7 +30437,7 @@ var Icon583 = memo((_a) => {
|
|
|
30448
30437
|
}
|
|
30449
30438
|
),
|
|
30450
30439
|
/* @__PURE__ */ jsxs(
|
|
30451
|
-
LinearGradient,
|
|
30440
|
+
LinearGradient$1,
|
|
30452
30441
|
{
|
|
30453
30442
|
gradientUnits: "userSpaceOnUse",
|
|
30454
30443
|
id: b.id,
|
|
@@ -30466,7 +30455,7 @@ var Icon583 = memo((_a) => {
|
|
|
30466
30455
|
}
|
|
30467
30456
|
),
|
|
30468
30457
|
/* @__PURE__ */ jsxs(
|
|
30469
|
-
LinearGradient,
|
|
30458
|
+
LinearGradient$1,
|
|
30470
30459
|
{
|
|
30471
30460
|
gradientUnits: "userSpaceOnUse",
|
|
30472
30461
|
id: c.id,
|
|
@@ -30484,7 +30473,7 @@ var Icon583 = memo((_a) => {
|
|
|
30484
30473
|
}
|
|
30485
30474
|
),
|
|
30486
30475
|
/* @__PURE__ */ jsxs(
|
|
30487
|
-
LinearGradient,
|
|
30476
|
+
LinearGradient$1,
|
|
30488
30477
|
{
|
|
30489
30478
|
gradientUnits: "userSpaceOnUse",
|
|
30490
30479
|
id: d.id,
|
|
@@ -31242,7 +31231,7 @@ var Icon600 = memo((_a) => {
|
|
|
31242
31231
|
fillRule: "evenodd"
|
|
31243
31232
|
}
|
|
31244
31233
|
),
|
|
31245
|
-
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id, x1: "15", x2: "-.5", y1: "1", y2: "24", children: [
|
|
31234
|
+
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id, x1: "15", x2: "-.5", y1: "1", y2: "24", children: [
|
|
31246
31235
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#E8632A", stopOpacity: ".996" }),
|
|
31247
31236
|
/* @__PURE__ */ jsx(Stop, { offset: "58.6%", stopColor: "#B465E6", stopOpacity: ".996" }),
|
|
31248
31237
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#979FD9", stopOpacity: ".996" })
|
|
@@ -31405,7 +31394,7 @@ var Icon602 = memo((_a) => {
|
|
|
31405
31394
|
),
|
|
31406
31395
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
31407
31396
|
/* @__PURE__ */ jsxs(
|
|
31408
|
-
LinearGradient,
|
|
31397
|
+
LinearGradient$1,
|
|
31409
31398
|
{
|
|
31410
31399
|
gradientUnits: "userSpaceOnUse",
|
|
31411
31400
|
id: a.id,
|
|
@@ -31420,7 +31409,7 @@ var Icon602 = memo((_a) => {
|
|
|
31420
31409
|
}
|
|
31421
31410
|
),
|
|
31422
31411
|
/* @__PURE__ */ jsxs(
|
|
31423
|
-
LinearGradient,
|
|
31412
|
+
LinearGradient$1,
|
|
31424
31413
|
{
|
|
31425
31414
|
gradientUnits: "userSpaceOnUse",
|
|
31426
31415
|
id: b.id,
|
|
@@ -33777,7 +33766,7 @@ var Icon657 = memo((_a) => {
|
|
|
33777
33766
|
),
|
|
33778
33767
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
33779
33768
|
/* @__PURE__ */ jsxs(
|
|
33780
|
-
LinearGradient,
|
|
33769
|
+
LinearGradient$1,
|
|
33781
33770
|
{
|
|
33782
33771
|
gradientUnits: "userSpaceOnUse",
|
|
33783
33772
|
id: a.id,
|
|
@@ -33792,7 +33781,7 @@ var Icon657 = memo((_a) => {
|
|
|
33792
33781
|
}
|
|
33793
33782
|
),
|
|
33794
33783
|
/* @__PURE__ */ jsxs(
|
|
33795
|
-
LinearGradient,
|
|
33784
|
+
LinearGradient$1,
|
|
33796
33785
|
{
|
|
33797
33786
|
gradientUnits: "userSpaceOnUse",
|
|
33798
33787
|
id: b.id,
|
|
@@ -33807,7 +33796,7 @@ var Icon657 = memo((_a) => {
|
|
|
33807
33796
|
}
|
|
33808
33797
|
),
|
|
33809
33798
|
/* @__PURE__ */ jsxs(
|
|
33810
|
-
LinearGradient,
|
|
33799
|
+
LinearGradient$1,
|
|
33811
33800
|
{
|
|
33812
33801
|
gradientUnits: "userSpaceOnUse",
|
|
33813
33802
|
id: c.id,
|
|
@@ -34655,7 +34644,7 @@ var Icon677 = memo((_a) => {
|
|
|
34655
34644
|
}
|
|
34656
34645
|
),
|
|
34657
34646
|
/* @__PURE__ */ jsx(Defs, { children: /* @__PURE__ */ jsxs(
|
|
34658
|
-
LinearGradient,
|
|
34647
|
+
LinearGradient$1,
|
|
34659
34648
|
{
|
|
34660
34649
|
gradientUnits: "userSpaceOnUse",
|
|
34661
34650
|
id,
|
|
@@ -35282,13 +35271,13 @@ var Icon690 = memo((_a) => {
|
|
|
35282
35271
|
}
|
|
35283
35272
|
),
|
|
35284
35273
|
/* @__PURE__ */ jsxs(Defs, { children: [
|
|
35285
|
-
/* @__PURE__ */ jsxs(LinearGradient, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "12", x2: "12", y1: "0", y2: "24", children: [
|
|
35274
|
+
/* @__PURE__ */ jsxs(LinearGradient$1, { gradientUnits: "userSpaceOnUse", id: a.id, x1: "12", x2: "12", y1: "0", y2: "24", children: [
|
|
35286
35275
|
/* @__PURE__ */ jsx(Stop, { stopColor: "#02B2FC" }),
|
|
35287
35276
|
/* @__PURE__ */ jsx(Stop, { offset: "5%", stopColor: "#20CBB6" }),
|
|
35288
35277
|
/* @__PURE__ */ jsx(Stop, { offset: "100%", stopColor: "#13D363" })
|
|
35289
35278
|
] }),
|
|
35290
35279
|
/* @__PURE__ */ jsxs(
|
|
35291
|
-
LinearGradient,
|
|
35280
|
+
LinearGradient$1,
|
|
35292
35281
|
{
|
|
35293
35282
|
gradientUnits: "userSpaceOnUse",
|
|
35294
35283
|
id: b.id,
|
|
@@ -35303,7 +35292,7 @@ var Icon690 = memo((_a) => {
|
|
|
35303
35292
|
}
|
|
35304
35293
|
),
|
|
35305
35294
|
/* @__PURE__ */ jsxs(
|
|
35306
|
-
LinearGradient,
|
|
35295
|
+
LinearGradient$1,
|
|
35307
35296
|
{
|
|
35308
35297
|
gradientUnits: "userSpaceOnUse",
|
|
35309
35298
|
id: c.id,
|
|
@@ -35319,7 +35308,7 @@ var Icon690 = memo((_a) => {
|
|
|
35319
35308
|
}
|
|
35320
35309
|
),
|
|
35321
35310
|
/* @__PURE__ */ jsxs(
|
|
35322
|
-
LinearGradient,
|
|
35311
|
+
LinearGradient$1,
|
|
35323
35312
|
{
|
|
35324
35313
|
gradientUnits: "userSpaceOnUse",
|
|
35325
35314
|
id: d.id,
|