@karrotmarket/react-multicolor-icon 1.19.0 → 1.20.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/IconNailpolish.cjs +2 -5
- package/lib/IconNailpolish.d.ts +1 -1
- package/lib/IconNailpolish.js +2 -5
- package/lib/IconSparkleArrowUp.cjs +89 -0
- package/lib/IconSparkleArrowUp.d.ts +11 -0
- package/lib/IconSparkleArrowUp.js +58 -0
- package/lib/IconTruck.cjs +3 -3
- package/lib/IconTruck.d.ts +1 -1
- package/lib/IconTruck.js +3 -3
- package/lib/index.cjs +2041 -1987
- package/lib/index.d.ts +76 -75
- package/lib/index.js +184 -182
- package/package.json +1 -1
package/lib/IconNailpolish.cjs
CHANGED
|
@@ -54,11 +54,8 @@ var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runt
|
|
|
54
54
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
55
55
|
"path",
|
|
56
56
|
{
|
|
57
|
-
d: "
|
|
58
|
-
|
|
59
|
-
strokeWidth: 2,
|
|
60
|
-
strokeLinecap: "round",
|
|
61
|
-
strokeLinejoin: "round"
|
|
57
|
+
d: "M14.5312 15.5C15.0835 15.5 15.5312 15.9477 15.5312 16.5C15.5312 17.0523 15.0835 17.5 14.5312 17.5H9.53125C8.97897 17.5 8.53125 17.0523 8.53125 16.5C8.53125 15.9477 8.97897 15.5 9.53125 15.5H14.5312Z",
|
|
58
|
+
fill: "white"
|
|
62
59
|
}
|
|
63
60
|
)
|
|
64
61
|
] })
|
package/lib/IconNailpolish.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ type IconProps = Omit<SVGProps<SVGSVGElement>, 'fill' | 'stroke' | 'color' | 'st
|
|
|
5
5
|
};
|
|
6
6
|
/**
|
|
7
7
|
* @alias beauty,cosmetics,makeup,nail,polish,뷰티,화장품,메이크업,네일,폴리쉬
|
|
8
|
-
* @preview 
|
|
9
9
|
*/
|
|
10
10
|
declare const IconNailpolish: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
11
|
export default IconNailpolish;
|
package/lib/IconNailpolish.js
CHANGED
|
@@ -30,11 +30,8 @@ var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
|
30
30
|
/* @__PURE__ */ jsx(
|
|
31
31
|
"path",
|
|
32
32
|
{
|
|
33
|
-
d: "
|
|
34
|
-
|
|
35
|
-
strokeWidth: 2,
|
|
36
|
-
strokeLinecap: "round",
|
|
37
|
-
strokeLinejoin: "round"
|
|
33
|
+
d: "M14.5312 15.5C15.0835 15.5 15.5312 15.9477 15.5312 16.5C15.5312 17.0523 15.0835 17.5 14.5312 17.5H9.53125C8.97897 17.5 8.53125 17.0523 8.53125 16.5C8.53125 15.9477 8.97897 15.5 9.53125 15.5H14.5312Z",
|
|
34
|
+
fill: "white"
|
|
38
35
|
}
|
|
39
36
|
)
|
|
40
37
|
] })
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// src/IconSparkleArrowUp.tsx
|
|
31
|
+
var IconSparkleArrowUp_exports = {};
|
|
32
|
+
__export(IconSparkleArrowUp_exports, {
|
|
33
|
+
default: () => IconSparkleArrowUp_default
|
|
34
|
+
});
|
|
35
|
+
module.exports = __toCommonJS(IconSparkleArrowUp_exports);
|
|
36
|
+
var React = __toESM(require("react"), 1);
|
|
37
|
+
var import_react = require("react");
|
|
38
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
39
|
+
var Icon = ({ size = 24, ...props }, ref) => {
|
|
40
|
+
const id = React.useId();
|
|
41
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
42
|
+
"svg",
|
|
43
|
+
{
|
|
44
|
+
viewBox: "0 0 24 24",
|
|
45
|
+
fill: "none",
|
|
46
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
47
|
+
"data-seed-icon": "true",
|
|
48
|
+
width: size,
|
|
49
|
+
height: size,
|
|
50
|
+
ref,
|
|
51
|
+
...props,
|
|
52
|
+
children: [
|
|
53
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
54
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
55
|
+
"path",
|
|
56
|
+
{
|
|
57
|
+
d: "M23.0146 10.3271C23.6996 10.9196 23.2806 12.0444 22.375 12.0444H19.8001C19.6344 12.0444 19.4999 12.1815 19.5014 12.3472C19.5438 17.0912 20.5781 19.7491 21.3628 21.4375C21.6642 22.0859 21.2096 22.8 20.4946 22.8H3.5055C2.79049 22.8 2.33591 22.0859 2.63728 21.4375C3.42202 19.7491 4.45635 17.0912 4.49871 12.3472C4.50019 12.1815 4.36574 12.0444 4.20005 12.0444H1.62512C0.719519 12.0444 0.300534 10.9196 0.985469 10.3271L11.3604 1.35325C11.7277 1.03557 12.2724 1.03557 12.6397 1.35325L23.0146 10.3271Z",
|
|
58
|
+
fill: `url(#${id}_paint_0)`
|
|
59
|
+
}
|
|
60
|
+
),
|
|
61
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
62
|
+
"path",
|
|
63
|
+
{
|
|
64
|
+
d: "M11.8776 6.05048C12.2347 6.04087 12.5608 6.25535 12.6921 6.58759L13.4548 8.52021C13.6772 9.08377 14.137 9.52062 14.7116 9.71259L16.6198 10.3493C16.9585 10.4627 17.1905 10.7764 17.1999 11.1335C17.2092 11.4907 16.9932 11.816 16.6608 11.947L14.7331 12.7048C14.1679 12.9272 13.7305 13.3892 13.5387 13.9655L12.9059 15.8688C12.793 16.2078 12.4789 16.44 12.1217 16.4499C11.7646 16.4595 11.4395 16.2442 11.3083 15.9118L10.5456 13.9802C10.3232 13.4168 9.86313 12.9798 9.28874 12.7878L7.38054 12.1511C7.04154 12.0378 6.80983 11.7242 6.80046 11.3669C6.79117 11.0097 7.00607 10.6843 7.33855 10.5534L9.26628 9.7956C9.83153 9.57317 10.2698 9.11124 10.4616 8.53486L11.0944 6.63154L11.1462 6.50947C11.2866 6.23803 11.5653 6.05915 11.8776 6.05048Z",
|
|
65
|
+
fill: "white"
|
|
66
|
+
}
|
|
67
|
+
)
|
|
68
|
+
] }),
|
|
69
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
70
|
+
"linearGradient",
|
|
71
|
+
{
|
|
72
|
+
id: `${id}_paint_0`,
|
|
73
|
+
x1: 0.308664,
|
|
74
|
+
y1: 22.8,
|
|
75
|
+
x2: 18.0645,
|
|
76
|
+
y2: 0.346177,
|
|
77
|
+
gradientUnits: "userSpaceOnUse",
|
|
78
|
+
children: [
|
|
79
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: 0.2, stopColor: "#FF6600" }),
|
|
80
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: 1, stopColor: "#D25ACA" })
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
) })
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
);
|
|
87
|
+
};
|
|
88
|
+
var IconSparkleArrowUp = (0, import_react.forwardRef)(Icon);
|
|
89
|
+
var IconSparkleArrowUp_default = IconSparkleArrowUp;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
type IconProps = Omit<SVGProps<SVGSVGElement>, 'fill' | 'stroke' | 'color' | 'stopColor' | 'floodColor' | 'lightingColor' | 'style' | 'className'> & {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
};
|
|
6
|
+
/**
|
|
7
|
+
* @alias 라이즈,광고AI솔루션,광고,인공지능,화살표,상승,rise,ai,sparkle,arrow,service:광고,tag:service
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconSparkleArrowUp: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconSparkleArrowUp;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
// src/IconSparkleArrowUp.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var Icon = ({ size = 24, ...props }, ref) => {
|
|
6
|
+
const id = React.useId();
|
|
7
|
+
return /* @__PURE__ */ jsxs(
|
|
8
|
+
"svg",
|
|
9
|
+
{
|
|
10
|
+
viewBox: "0 0 24 24",
|
|
11
|
+
fill: "none",
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13
|
+
"data-seed-icon": "true",
|
|
14
|
+
width: size,
|
|
15
|
+
height: size,
|
|
16
|
+
ref,
|
|
17
|
+
...props,
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
20
|
+
/* @__PURE__ */ jsx(
|
|
21
|
+
"path",
|
|
22
|
+
{
|
|
23
|
+
d: "M23.0146 10.3271C23.6996 10.9196 23.2806 12.0444 22.375 12.0444H19.8001C19.6344 12.0444 19.4999 12.1815 19.5014 12.3472C19.5438 17.0912 20.5781 19.7491 21.3628 21.4375C21.6642 22.0859 21.2096 22.8 20.4946 22.8H3.5055C2.79049 22.8 2.33591 22.0859 2.63728 21.4375C3.42202 19.7491 4.45635 17.0912 4.49871 12.3472C4.50019 12.1815 4.36574 12.0444 4.20005 12.0444H1.62512C0.719519 12.0444 0.300534 10.9196 0.985469 10.3271L11.3604 1.35325C11.7277 1.03557 12.2724 1.03557 12.6397 1.35325L23.0146 10.3271Z",
|
|
24
|
+
fill: `url(#${id}_paint_0)`
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ jsx(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
d: "M11.8776 6.05048C12.2347 6.04087 12.5608 6.25535 12.6921 6.58759L13.4548 8.52021C13.6772 9.08377 14.137 9.52062 14.7116 9.71259L16.6198 10.3493C16.9585 10.4627 17.1905 10.7764 17.1999 11.1335C17.2092 11.4907 16.9932 11.816 16.6608 11.947L14.7331 12.7048C14.1679 12.9272 13.7305 13.3892 13.5387 13.9655L12.9059 15.8688C12.793 16.2078 12.4789 16.44 12.1217 16.4499C11.7646 16.4595 11.4395 16.2442 11.3083 15.9118L10.5456 13.9802C10.3232 13.4168 9.86313 12.9798 9.28874 12.7878L7.38054 12.1511C7.04154 12.0378 6.80983 11.7242 6.80046 11.3669C6.79117 11.0097 7.00607 10.6843 7.33855 10.5534L9.26628 9.7956C9.83153 9.57317 10.2698 9.11124 10.4616 8.53486L11.0944 6.63154L11.1462 6.50947C11.2866 6.23803 11.5653 6.05915 11.8776 6.05048Z",
|
|
31
|
+
fill: "white"
|
|
32
|
+
}
|
|
33
|
+
)
|
|
34
|
+
] }),
|
|
35
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
|
|
36
|
+
"linearGradient",
|
|
37
|
+
{
|
|
38
|
+
id: `${id}_paint_0`,
|
|
39
|
+
x1: 0.308664,
|
|
40
|
+
y1: 22.8,
|
|
41
|
+
x2: 18.0645,
|
|
42
|
+
y2: 0.346177,
|
|
43
|
+
gradientUnits: "userSpaceOnUse",
|
|
44
|
+
children: [
|
|
45
|
+
/* @__PURE__ */ jsx("stop", { offset: 0.2, stopColor: "#FF6600" }),
|
|
46
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#D25ACA" })
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
) })
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
};
|
|
54
|
+
var IconSparkleArrowUp = forwardRef(Icon);
|
|
55
|
+
var IconSparkleArrowUp_default = IconSparkleArrowUp;
|
|
56
|
+
export {
|
|
57
|
+
IconSparkleArrowUp_default as default
|
|
58
|
+
};
|
package/lib/IconTruck.cjs
CHANGED
|
@@ -40,21 +40,21 @@ var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runt
|
|
|
40
40
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
41
41
|
"path",
|
|
42
42
|
{
|
|
43
|
-
d: "M8.5 2.
|
|
43
|
+
d: "M8.5 2.49988C6.40046 2.49988 4.96576 2.80879 3.77612 3.12117C3.18115 3.2774 2.71481 3.43469 2.39249 3.55515C2.2313 3.6154 2.106 3.66648 2.01851 3.70367C1.97476 3.72227 1.94045 3.73741 1.91582 3.74849L1.88615 3.762L1.87682 3.76634L1.87353 3.76789L1.87117 3.769C1.87117 3.769 1.87337 3.77363 2.24007 4.54715L1.87117 3.769C1.57055 3.91152 1.37891 4.21446 1.37891 4.54715V17.2694C1.37891 17.6585 1.63978 17.9992 2.01537 18.1007L4.80206 18.854C4.87532 18.8738 4.95088 18.8838 5.02677 18.8838H19.5622C19.6573 18.8838 19.7517 18.8681 19.8416 18.8372L22.0381 18.084C22.3862 17.9646 22.6199 17.6373 22.6199 17.2694V12.9142C22.6199 12.4809 22.5458 12.0497 22.3997 11.6413L20.5649 6.99988C20.4424 6.6573 20.1178 6.49988 19.754 6.49988H15V4.54715C15 4.31733 14.9081 4.09704 14.7449 3.93531L14.1389 4.54711C14.7449 3.93531 14.7438 3.9343 14.7438 3.9343L14.7428 3.93327L14.7406 3.93112L14.7359 3.92652L14.7249 3.91612C14.717 3.90866 14.7077 3.90017 14.6971 3.89073C14.6759 3.87183 14.6493 3.84914 14.6169 3.82324C14.552 3.77142 14.4641 3.707 14.3502 3.63469C14.122 3.48989 13.7914 3.31491 13.3346 3.14623C12.4207 2.80882 10.5993 2.49988 8.5 2.49988Z",
|
|
44
44
|
fill: "#AFC1DA"
|
|
45
45
|
}
|
|
46
46
|
),
|
|
47
47
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
48
48
|
"path",
|
|
49
49
|
{
|
|
50
|
-
d: "M15.3046 5.
|
|
50
|
+
d: "M15.3046 5.9386C14.829 5.9386 14.4434 6.32416 14.4434 6.79977V12.0528L2.24007 12.0529C1.76446 12.0529 1.37891 12.4384 1.37891 12.914V17.3855C1.37891 17.7746 1.63978 18.1153 2.01537 18.2168L4.80206 18.97C4.87532 18.9898 4.95088 18.9999 5.02677 18.9999H19.5622C19.6573 18.9999 19.7517 18.9841 19.8416 18.9533L22.0381 18.2001C22.3862 18.0807 22.6199 17.7534 22.6199 17.3855V12.914C22.6199 12.4807 22.5458 12.0495 22.3997 11.6411L20.5649 6.50981C20.4424 6.16723 20.1178 5.9386 19.754 5.9386H15.3046Z",
|
|
51
51
|
fill: "#5074E9"
|
|
52
52
|
}
|
|
53
53
|
),
|
|
54
54
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
55
55
|
"path",
|
|
56
56
|
{
|
|
57
|
-
d: "M19.5778 12.1031L17.0287 12.
|
|
57
|
+
d: "M19.5778 12.1031L17.0287 12.12C16.7183 12.121 16.4662 11.8631 16.4662 11.543V8.69699C16.4662 8.37796 16.7163 8.12 17.0256 8.12H18.6457C18.8979 8.12 19.1184 8.29373 19.1847 8.54432L20.1137 11.3735C20.2117 11.7399 19.9452 12.1021 19.5767 12.1042L19.5778 12.1031Z",
|
|
58
58
|
fill: "white"
|
|
59
59
|
}
|
|
60
60
|
),
|
package/lib/IconTruck.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ type IconProps = Omit<SVGProps<SVGSVGElement>, 'fill' | 'stroke' | 'color' | 'st
|
|
|
5
5
|
};
|
|
6
6
|
/**
|
|
7
7
|
* @alias truck,delivery,shipping,transport,logistics,트럭,용달,배달,배송,운송
|
|
8
|
-
* @preview 
|
|
9
9
|
*/
|
|
10
10
|
declare const IconTruck: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
11
|
export default IconTruck;
|
package/lib/IconTruck.js
CHANGED
|
@@ -16,21 +16,21 @@ var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
|
16
16
|
/* @__PURE__ */ jsx(
|
|
17
17
|
"path",
|
|
18
18
|
{
|
|
19
|
-
d: "M8.5 2.
|
|
19
|
+
d: "M8.5 2.49988C6.40046 2.49988 4.96576 2.80879 3.77612 3.12117C3.18115 3.2774 2.71481 3.43469 2.39249 3.55515C2.2313 3.6154 2.106 3.66648 2.01851 3.70367C1.97476 3.72227 1.94045 3.73741 1.91582 3.74849L1.88615 3.762L1.87682 3.76634L1.87353 3.76789L1.87117 3.769C1.87117 3.769 1.87337 3.77363 2.24007 4.54715L1.87117 3.769C1.57055 3.91152 1.37891 4.21446 1.37891 4.54715V17.2694C1.37891 17.6585 1.63978 17.9992 2.01537 18.1007L4.80206 18.854C4.87532 18.8738 4.95088 18.8838 5.02677 18.8838H19.5622C19.6573 18.8838 19.7517 18.8681 19.8416 18.8372L22.0381 18.084C22.3862 17.9646 22.6199 17.6373 22.6199 17.2694V12.9142C22.6199 12.4809 22.5458 12.0497 22.3997 11.6413L20.5649 6.99988C20.4424 6.6573 20.1178 6.49988 19.754 6.49988H15V4.54715C15 4.31733 14.9081 4.09704 14.7449 3.93531L14.1389 4.54711C14.7449 3.93531 14.7438 3.9343 14.7438 3.9343L14.7428 3.93327L14.7406 3.93112L14.7359 3.92652L14.7249 3.91612C14.717 3.90866 14.7077 3.90017 14.6971 3.89073C14.6759 3.87183 14.6493 3.84914 14.6169 3.82324C14.552 3.77142 14.4641 3.707 14.3502 3.63469C14.122 3.48989 13.7914 3.31491 13.3346 3.14623C12.4207 2.80882 10.5993 2.49988 8.5 2.49988Z",
|
|
20
20
|
fill: "#AFC1DA"
|
|
21
21
|
}
|
|
22
22
|
),
|
|
23
23
|
/* @__PURE__ */ jsx(
|
|
24
24
|
"path",
|
|
25
25
|
{
|
|
26
|
-
d: "M15.3046 5.
|
|
26
|
+
d: "M15.3046 5.9386C14.829 5.9386 14.4434 6.32416 14.4434 6.79977V12.0528L2.24007 12.0529C1.76446 12.0529 1.37891 12.4384 1.37891 12.914V17.3855C1.37891 17.7746 1.63978 18.1153 2.01537 18.2168L4.80206 18.97C4.87532 18.9898 4.95088 18.9999 5.02677 18.9999H19.5622C19.6573 18.9999 19.7517 18.9841 19.8416 18.9533L22.0381 18.2001C22.3862 18.0807 22.6199 17.7534 22.6199 17.3855V12.914C22.6199 12.4807 22.5458 12.0495 22.3997 11.6411L20.5649 6.50981C20.4424 6.16723 20.1178 5.9386 19.754 5.9386H15.3046Z",
|
|
27
27
|
fill: "#5074E9"
|
|
28
28
|
}
|
|
29
29
|
),
|
|
30
30
|
/* @__PURE__ */ jsx(
|
|
31
31
|
"path",
|
|
32
32
|
{
|
|
33
|
-
d: "M19.5778 12.1031L17.0287 12.
|
|
33
|
+
d: "M19.5778 12.1031L17.0287 12.12C16.7183 12.121 16.4662 11.8631 16.4662 11.543V8.69699C16.4662 8.37796 16.7163 8.12 17.0256 8.12H18.6457C18.8979 8.12 19.1184 8.29373 19.1847 8.54432L20.1137 11.3735C20.2117 11.7399 19.9452 12.1021 19.5767 12.1042L19.5778 12.1031Z",
|
|
34
34
|
fill: "white"
|
|
35
35
|
}
|
|
36
36
|
),
|