@karrotmarket/react-multicolor-icon 1.19.0 → 1.21.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/IconExclamationmarkTriangle.cjs +58 -0
- package/lib/IconExclamationmarkTriangle.d.ts +11 -0
- package/lib/IconExclamationmarkTriangle.js +37 -0
- package/lib/IconGlasses.cjs +69 -0
- package/lib/IconGlasses.d.ts +11 -0
- package/lib/IconGlasses.js +48 -0
- 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/IconSquareline2Vertical.cjs +76 -0
- package/lib/IconSquareline2Vertical.d.ts +11 -0
- package/lib/IconSquareline2Vertical.js +55 -0
- package/lib/IconTruck.cjs +3 -3
- package/lib/IconTruck.d.ts +1 -1
- package/lib/IconTruck.js +3 -3
- package/lib/index.cjs +2359 -2168
- package/lib/index.d.ts +79 -75
- package/lib/index.js +188 -180
- package/package.json +1 -1
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/IconExclamationmarkTriangle.tsx
|
|
21
|
+
var IconExclamationmarkTriangle_exports = {};
|
|
22
|
+
__export(IconExclamationmarkTriangle_exports, {
|
|
23
|
+
default: () => IconExclamationmarkTriangle_default
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(IconExclamationmarkTriangle_exports);
|
|
26
|
+
var import_react = require("react");
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
29
|
+
"svg",
|
|
30
|
+
{
|
|
31
|
+
viewBox: "0 0 24 24",
|
|
32
|
+
fill: "none",
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
"data-seed-icon": "true",
|
|
35
|
+
width: size,
|
|
36
|
+
height: size,
|
|
37
|
+
ref,
|
|
38
|
+
...props,
|
|
39
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
40
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
41
|
+
"path",
|
|
42
|
+
{
|
|
43
|
+
d: "M9.40013 3.51618C10.5538 1.51084 13.4478 1.5106 14.6013 3.51618L22.6443 17.5045C23.794 19.5043 22.3504 21.9993 20.0437 21.9996H3.95775C1.65078 21.9996 0.207353 19.5044 1.35716 17.5045L9.40013 3.51618Z",
|
|
44
|
+
fill: "#FFAA00"
|
|
45
|
+
}
|
|
46
|
+
),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
48
|
+
"path",
|
|
49
|
+
{
|
|
50
|
+
d: "M12 16.0098C12.6873 16.0098 13.2499 16.5666 13.25 17.2598C13.25 17.953 12.6873 18.5098 12 18.5098C11.3127 18.5098 10.75 17.953 10.75 17.2598C10.7501 16.5666 11.3127 16.0098 12 16.0098ZM12 7.05762C12.5523 7.05762 13 7.50533 13 8.05762V13.2578C12.9998 13.8099 12.5522 14.2578 12 14.2578C11.4478 14.2578 11.0002 13.8099 11 13.2578V8.05762C11 7.50533 11.4477 7.05762 12 7.05762Z",
|
|
51
|
+
fill: "#222B38"
|
|
52
|
+
}
|
|
53
|
+
)
|
|
54
|
+
] })
|
|
55
|
+
}
|
|
56
|
+
);
|
|
57
|
+
var IconExclamationmarkTriangle = (0, import_react.forwardRef)(Icon);
|
|
58
|
+
var IconExclamationmarkTriangle_default = IconExclamationmarkTriangle;
|
|
@@ -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 alert,triangle,exclamation mark,warning,caution,경고,주의,느낌표,알림,삼각형
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconExclamationmarkTriangle: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconExclamationmarkTriangle;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// src/IconExclamationmarkTriangle.tsx
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
|
+
var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
"data-seed-icon": "true",
|
|
11
|
+
width: size,
|
|
12
|
+
height: size,
|
|
13
|
+
ref,
|
|
14
|
+
...props,
|
|
15
|
+
children: /* @__PURE__ */ jsxs("g", { children: [
|
|
16
|
+
/* @__PURE__ */ jsx(
|
|
17
|
+
"path",
|
|
18
|
+
{
|
|
19
|
+
d: "M9.40013 3.51618C10.5538 1.51084 13.4478 1.5106 14.6013 3.51618L22.6443 17.5045C23.794 19.5043 22.3504 21.9993 20.0437 21.9996H3.95775C1.65078 21.9996 0.207353 19.5044 1.35716 17.5045L9.40013 3.51618Z",
|
|
20
|
+
fill: "#FFAA00"
|
|
21
|
+
}
|
|
22
|
+
),
|
|
23
|
+
/* @__PURE__ */ jsx(
|
|
24
|
+
"path",
|
|
25
|
+
{
|
|
26
|
+
d: "M12 16.0098C12.6873 16.0098 13.2499 16.5666 13.25 17.2598C13.25 17.953 12.6873 18.5098 12 18.5098C11.3127 18.5098 10.75 17.953 10.75 17.2598C10.7501 16.5666 11.3127 16.0098 12 16.0098ZM12 7.05762C12.5523 7.05762 13 7.50533 13 8.05762V13.2578C12.9998 13.8099 12.5522 14.2578 12 14.2578C11.4478 14.2578 11.0002 13.8099 11 13.2578V8.05762C11 7.50533 11.4477 7.05762 12 7.05762Z",
|
|
27
|
+
fill: "#222B38"
|
|
28
|
+
}
|
|
29
|
+
)
|
|
30
|
+
] })
|
|
31
|
+
}
|
|
32
|
+
);
|
|
33
|
+
var IconExclamationmarkTriangle = forwardRef(Icon);
|
|
34
|
+
var IconExclamationmarkTriangle_default = IconExclamationmarkTriangle;
|
|
35
|
+
export {
|
|
36
|
+
IconExclamationmarkTriangle_default as default
|
|
37
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/IconGlasses.tsx
|
|
21
|
+
var IconGlasses_exports = {};
|
|
22
|
+
__export(IconGlasses_exports, {
|
|
23
|
+
default: () => IconGlasses_default
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(IconGlasses_exports);
|
|
26
|
+
var import_react = require("react");
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
29
|
+
"svg",
|
|
30
|
+
{
|
|
31
|
+
viewBox: "0 0 24 24",
|
|
32
|
+
fill: "none",
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
"data-seed-icon": "true",
|
|
35
|
+
width: size,
|
|
36
|
+
height: size,
|
|
37
|
+
ref,
|
|
38
|
+
...props,
|
|
39
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
40
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
41
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
42
|
+
"path",
|
|
43
|
+
{
|
|
44
|
+
d: "M7.9991 2.7998C8.66166 2.80002 9.19832 3.33739 9.19832 4C9.19832 4.66261 8.66166 5.19998 7.9991 5.2002C7.23501 5.20022 6.82213 5.46319 6.57234 5.71387C6.29607 5.99123 6.14857 6.32668 6.06648 6.55371L3.40242 14.9316C3.20144 15.5631 2.52612 15.9119 1.89461 15.7109C1.2635 15.5098 0.914605 14.8354 1.11531 14.2041L3.79012 5.79883L3.79598 5.77832L3.80281 5.75781C3.92627 5.41268 4.21905 4.67503 4.87215 4.01953C5.55704 3.33221 6.57576 2.79983 7.9991 2.7998Z",
|
|
45
|
+
fill: "#126BE0"
|
|
46
|
+
}
|
|
47
|
+
),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
49
|
+
"path",
|
|
50
|
+
{
|
|
51
|
+
d: "M15.9991 2.7998C17.4224 2.79983 18.4412 3.33221 19.1261 4.01953C19.7792 4.67503 20.0719 5.41268 20.1954 5.75781L20.2022 5.77832L20.2081 5.79883L22.8829 14.2041C23.0836 14.8354 22.7347 15.5098 22.1036 15.7109C21.4721 15.9119 20.7968 15.5631 20.5958 14.9316L17.9317 6.55371C17.8496 6.32668 17.7021 5.99123 17.4259 5.71387C17.1761 5.46319 16.7632 5.20022 15.9991 5.2002C15.3365 5.19998 14.7999 4.66261 14.7999 4C14.7999 3.33739 15.3365 2.80002 15.9991 2.7998Z",
|
|
52
|
+
fill: "#126BE0"
|
|
53
|
+
}
|
|
54
|
+
)
|
|
55
|
+
] }),
|
|
56
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
57
|
+
"path",
|
|
58
|
+
{
|
|
59
|
+
fillRule: "evenodd",
|
|
60
|
+
clipRule: "evenodd",
|
|
61
|
+
d: "M18.001 10.7998C20.8729 10.7998 23.2012 13.1281 23.2012 16C23.2012 18.8719 20.8729 21.2002 18.001 21.2002C15.1291 21.2002 12.8008 18.8719 12.8008 16C12.8008 15.5721 12.4486 15.2071 12.001 15.1992C11.5503 15.2071 11.2012 15.5672 11.2012 16C11.2012 18.8719 8.87286 21.2002 6.00098 21.2002C3.1291 21.2002 0.800781 18.8719 0.800781 16C0.800781 13.1281 3.1291 10.7998 6.00098 10.7998C7.85535 10.7998 9.4817 11.7714 10.4023 13.2324C10.8716 12.9608 11.4142 12.8021 11.9922 12.7979C11.998 12.7978 12.004 12.7978 12.0098 12.7979C12.5875 12.8021 13.1291 12.9616 13.5977 13.2334C14.5181 11.7715 16.1459 10.7998 18.001 10.7998ZM6.00098 13.2002C4.45458 13.2002 3.20117 14.4536 3.20117 16C3.20117 17.5464 4.45458 18.7998 6.00098 18.7998C7.54737 18.7998 8.80078 17.5464 8.80078 16C8.80078 14.4536 7.54737 13.2002 6.00098 13.2002ZM18.001 13.2002C16.4546 13.2002 15.2012 14.4536 15.2012 16C15.2012 17.5464 16.4546 18.7998 18.001 18.7998C19.5474 18.7998 20.8008 17.5464 20.8008 16C20.8008 14.4536 19.5474 13.2002 18.001 13.2002Z",
|
|
62
|
+
fill: "#55A7FF"
|
|
63
|
+
}
|
|
64
|
+
)
|
|
65
|
+
] })
|
|
66
|
+
}
|
|
67
|
+
);
|
|
68
|
+
var IconGlasses = (0, import_react.forwardRef)(Icon);
|
|
69
|
+
var IconGlasses_default = IconGlasses;
|
|
@@ -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 glasses,eyeglasses,optician,안경,안경점,안경원,안경판매점,
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconGlasses: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconGlasses;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
// src/IconGlasses.tsx
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
|
+
var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
"data-seed-icon": "true",
|
|
11
|
+
width: size,
|
|
12
|
+
height: size,
|
|
13
|
+
ref,
|
|
14
|
+
...props,
|
|
15
|
+
children: /* @__PURE__ */ jsxs("g", { children: [
|
|
16
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
17
|
+
/* @__PURE__ */ jsx(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
d: "M7.9991 2.7998C8.66166 2.80002 9.19832 3.33739 9.19832 4C9.19832 4.66261 8.66166 5.19998 7.9991 5.2002C7.23501 5.20022 6.82213 5.46319 6.57234 5.71387C6.29607 5.99123 6.14857 6.32668 6.06648 6.55371L3.40242 14.9316C3.20144 15.5631 2.52612 15.9119 1.89461 15.7109C1.2635 15.5098 0.914605 14.8354 1.11531 14.2041L3.79012 5.79883L3.79598 5.77832L3.80281 5.75781C3.92627 5.41268 4.21905 4.67503 4.87215 4.01953C5.55704 3.33221 6.57576 2.79983 7.9991 2.7998Z",
|
|
21
|
+
fill: "#126BE0"
|
|
22
|
+
}
|
|
23
|
+
),
|
|
24
|
+
/* @__PURE__ */ jsx(
|
|
25
|
+
"path",
|
|
26
|
+
{
|
|
27
|
+
d: "M15.9991 2.7998C17.4224 2.79983 18.4412 3.33221 19.1261 4.01953C19.7792 4.67503 20.0719 5.41268 20.1954 5.75781L20.2022 5.77832L20.2081 5.79883L22.8829 14.2041C23.0836 14.8354 22.7347 15.5098 22.1036 15.7109C21.4721 15.9119 20.7968 15.5631 20.5958 14.9316L17.9317 6.55371C17.8496 6.32668 17.7021 5.99123 17.4259 5.71387C17.1761 5.46319 16.7632 5.20022 15.9991 5.2002C15.3365 5.19998 14.7999 4.66261 14.7999 4C14.7999 3.33739 15.3365 2.80002 15.9991 2.7998Z",
|
|
28
|
+
fill: "#126BE0"
|
|
29
|
+
}
|
|
30
|
+
)
|
|
31
|
+
] }),
|
|
32
|
+
/* @__PURE__ */ jsx(
|
|
33
|
+
"path",
|
|
34
|
+
{
|
|
35
|
+
fillRule: "evenodd",
|
|
36
|
+
clipRule: "evenodd",
|
|
37
|
+
d: "M18.001 10.7998C20.8729 10.7998 23.2012 13.1281 23.2012 16C23.2012 18.8719 20.8729 21.2002 18.001 21.2002C15.1291 21.2002 12.8008 18.8719 12.8008 16C12.8008 15.5721 12.4486 15.2071 12.001 15.1992C11.5503 15.2071 11.2012 15.5672 11.2012 16C11.2012 18.8719 8.87286 21.2002 6.00098 21.2002C3.1291 21.2002 0.800781 18.8719 0.800781 16C0.800781 13.1281 3.1291 10.7998 6.00098 10.7998C7.85535 10.7998 9.4817 11.7714 10.4023 13.2324C10.8716 12.9608 11.4142 12.8021 11.9922 12.7979C11.998 12.7978 12.004 12.7978 12.0098 12.7979C12.5875 12.8021 13.1291 12.9616 13.5977 13.2334C14.5181 11.7715 16.1459 10.7998 18.001 10.7998ZM6.00098 13.2002C4.45458 13.2002 3.20117 14.4536 3.20117 16C3.20117 17.5464 4.45458 18.7998 6.00098 18.7998C7.54737 18.7998 8.80078 17.5464 8.80078 16C8.80078 14.4536 7.54737 13.2002 6.00098 13.2002ZM18.001 13.2002C16.4546 13.2002 15.2012 14.4536 15.2012 16C15.2012 17.5464 16.4546 18.7998 18.001 18.7998C19.5474 18.7998 20.8008 17.5464 20.8008 16C20.8008 14.4536 19.5474 13.2002 18.001 13.2002Z",
|
|
38
|
+
fill: "#55A7FF"
|
|
39
|
+
}
|
|
40
|
+
)
|
|
41
|
+
] })
|
|
42
|
+
}
|
|
43
|
+
);
|
|
44
|
+
var IconGlasses = forwardRef(Icon);
|
|
45
|
+
var IconGlasses_default = IconGlasses;
|
|
46
|
+
export {
|
|
47
|
+
IconGlasses_default as default
|
|
48
|
+
};
|
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
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/IconSquareline2Vertical.tsx
|
|
21
|
+
var IconSquareline2Vertical_exports = {};
|
|
22
|
+
__export(IconSquareline2Vertical_exports, {
|
|
23
|
+
default: () => IconSquareline2Vertical_default
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(IconSquareline2Vertical_exports);
|
|
26
|
+
var import_react = require("react");
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
29
|
+
"svg",
|
|
30
|
+
{
|
|
31
|
+
viewBox: "0 0 24 24",
|
|
32
|
+
fill: "none",
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
"data-seed-icon": "true",
|
|
35
|
+
width: size,
|
|
36
|
+
height: size,
|
|
37
|
+
ref,
|
|
38
|
+
...props,
|
|
39
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
40
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
41
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
42
|
+
"path",
|
|
43
|
+
{
|
|
44
|
+
d: "M6.5 14C7.32843 14 8 14.6716 8 15.5V19.5C8 20.3284 7.32843 21 6.5 21H2.5C1.67157 21 1 20.3284 1 19.5V15.5C1 14.6716 1.67157 14 2.5 14H6.5Z",
|
|
45
|
+
fill: "#2DA871"
|
|
46
|
+
}
|
|
47
|
+
),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
49
|
+
"path",
|
|
50
|
+
{
|
|
51
|
+
d: "M6.5 3C7.32843 3 8 3.67157 8 4.5V8.5C8 9.32843 7.32843 10 6.5 10H2.5C1.67157 10 1 9.32843 1 8.5V4.5C1 3.67157 1.67157 3 2.5 3H6.5Z",
|
|
52
|
+
fill: "#2DA871"
|
|
53
|
+
}
|
|
54
|
+
)
|
|
55
|
+
] }),
|
|
56
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
57
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
58
|
+
"path",
|
|
59
|
+
{
|
|
60
|
+
d: "M22 16.2988C22.6627 16.2988 23.2002 16.8373 23.2002 17.5C23.1999 18.1625 22.6626 18.6992 22 18.6992H11.5C10.8373 18.6992 10.2998 18.1618 10.2998 17.499C10.3001 16.8365 10.8374 16.2988 11.5 16.2988H22Z",
|
|
61
|
+
fill: "#20C578"
|
|
62
|
+
}
|
|
63
|
+
),
|
|
64
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
65
|
+
"path",
|
|
66
|
+
{
|
|
67
|
+
d: "M22 5.2998C22.6627 5.2998 23.2002 5.83823 23.2002 6.50098C23.1999 7.16349 22.6626 7.7002 22 7.7002H11.5C10.8373 7.7002 10.2998 7.16274 10.2998 6.5C10.3001 5.83748 10.8374 5.2998 11.5 5.2998H22Z",
|
|
68
|
+
fill: "#20C578"
|
|
69
|
+
}
|
|
70
|
+
)
|
|
71
|
+
] })
|
|
72
|
+
] })
|
|
73
|
+
}
|
|
74
|
+
);
|
|
75
|
+
var IconSquareline2Vertical = (0, import_react.forwardRef)(Icon);
|
|
76
|
+
var IconSquareline2Vertical_default = IconSquareline2Vertical;
|
|
@@ -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 card,layout,list,list_thumbnail,squares,stack,thumbnail,type,vertical,view,레이아웃,리스트,목록,뷰타입,사각형,세로,스택,썸네일,카드
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconSquareline2Vertical: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconSquareline2Vertical;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
// src/IconSquareline2Vertical.tsx
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
|
+
var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
fill: "none",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
"data-seed-icon": "true",
|
|
11
|
+
width: size,
|
|
12
|
+
height: size,
|
|
13
|
+
ref,
|
|
14
|
+
...props,
|
|
15
|
+
children: /* @__PURE__ */ jsxs("g", { children: [
|
|
16
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
17
|
+
/* @__PURE__ */ jsx(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
d: "M6.5 14C7.32843 14 8 14.6716 8 15.5V19.5C8 20.3284 7.32843 21 6.5 21H2.5C1.67157 21 1 20.3284 1 19.5V15.5C1 14.6716 1.67157 14 2.5 14H6.5Z",
|
|
21
|
+
fill: "#2DA871"
|
|
22
|
+
}
|
|
23
|
+
),
|
|
24
|
+
/* @__PURE__ */ jsx(
|
|
25
|
+
"path",
|
|
26
|
+
{
|
|
27
|
+
d: "M6.5 3C7.32843 3 8 3.67157 8 4.5V8.5C8 9.32843 7.32843 10 6.5 10H2.5C1.67157 10 1 9.32843 1 8.5V4.5C1 3.67157 1.67157 3 2.5 3H6.5Z",
|
|
28
|
+
fill: "#2DA871"
|
|
29
|
+
}
|
|
30
|
+
)
|
|
31
|
+
] }),
|
|
32
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
33
|
+
/* @__PURE__ */ jsx(
|
|
34
|
+
"path",
|
|
35
|
+
{
|
|
36
|
+
d: "M22 16.2988C22.6627 16.2988 23.2002 16.8373 23.2002 17.5C23.1999 18.1625 22.6626 18.6992 22 18.6992H11.5C10.8373 18.6992 10.2998 18.1618 10.2998 17.499C10.3001 16.8365 10.8374 16.2988 11.5 16.2988H22Z",
|
|
37
|
+
fill: "#20C578"
|
|
38
|
+
}
|
|
39
|
+
),
|
|
40
|
+
/* @__PURE__ */ jsx(
|
|
41
|
+
"path",
|
|
42
|
+
{
|
|
43
|
+
d: "M22 5.2998C22.6627 5.2998 23.2002 5.83823 23.2002 6.50098C23.1999 7.16349 22.6626 7.7002 22 7.7002H11.5C10.8373 7.7002 10.2998 7.16274 10.2998 6.5C10.3001 5.83748 10.8374 5.2998 11.5 5.2998H22Z",
|
|
44
|
+
fill: "#20C578"
|
|
45
|
+
}
|
|
46
|
+
)
|
|
47
|
+
] })
|
|
48
|
+
] })
|
|
49
|
+
}
|
|
50
|
+
);
|
|
51
|
+
var IconSquareline2Vertical = forwardRef(Icon);
|
|
52
|
+
var IconSquareline2Vertical_default = IconSquareline2Vertical;
|
|
53
|
+
export {
|
|
54
|
+
IconSquareline2Vertical_default as default
|
|
55
|
+
};
|
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
|
),
|