@karrotmarket/react-multicolor-icon 0.0.16
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/LICENSE +2 -0
- package/README.md +25 -0
- package/lib/IconAnimalFace.cjs +79 -0
- package/lib/IconAnimalFace.d.ts +11 -0
- package/lib/IconAnimalFace.js +59 -0
- package/lib/IconApple.cjs +85 -0
- package/lib/IconApple.d.ts +11 -0
- package/lib/IconApple.js +65 -0
- package/lib/IconBuilding2.cjs +93 -0
- package/lib/IconBuilding2.d.ts +11 -0
- package/lib/IconBuilding2.js +73 -0
- package/lib/IconCarFrontside.cjs +100 -0
- package/lib/IconCarFrontside.d.ts +11 -0
- package/lib/IconCarFrontside.js +80 -0
- package/lib/IconCard.cjs +60 -0
- package/lib/IconCard.d.ts +11 -0
- package/lib/IconCard.js +40 -0
- package/lib/IconCheckmarkCalendar.cjs +66 -0
- package/lib/IconCheckmarkCalendar.d.ts +11 -0
- package/lib/IconCheckmarkCalendar.js +46 -0
- package/lib/IconCupHeatwave.cjs +59 -0
- package/lib/IconCupHeatwave.d.ts +11 -0
- package/lib/IconCupHeatwave.js +39 -0
- package/lib/IconDumbbell.cjs +68 -0
- package/lib/IconDumbbell.d.ts +11 -0
- package/lib/IconDumbbell.js +48 -0
- package/lib/IconForkSpoon.cjs +77 -0
- package/lib/IconForkSpoon.d.ts +11 -0
- package/lib/IconForkSpoon.js +57 -0
- package/lib/IconForkSpoonBag.cjs +77 -0
- package/lib/IconForkSpoonBag.d.ts +11 -0
- package/lib/IconForkSpoonBag.js +57 -0
- package/lib/IconFraction_1NUppercase.cjs +70 -0
- package/lib/IconFraction_1NUppercase.d.ts +11 -0
- package/lib/IconFraction_1NUppercase.js +50 -0
- package/lib/IconHospital.cjs +66 -0
- package/lib/IconHospital.d.ts +11 -0
- package/lib/IconHospital.js +46 -0
- package/lib/IconLinechartUpXaxis.cjs +59 -0
- package/lib/IconLinechartUpXaxis.d.ts +11 -0
- package/lib/IconLinechartUpXaxis.js +39 -0
- package/lib/IconMegaphoneTilted.cjs +61 -0
- package/lib/IconMegaphoneTilted.d.ts +11 -0
- package/lib/IconMegaphoneTilted.js +41 -0
- package/lib/IconNailpolish.cjs +69 -0
- package/lib/IconNailpolish.d.ts +11 -0
- package/lib/IconNailpolish.js +49 -0
- package/lib/IconPaintroller.cjs +68 -0
- package/lib/IconPaintroller.d.ts +11 -0
- package/lib/IconPaintroller.js +48 -0
- package/lib/IconPalette.cjs +50 -0
- package/lib/IconPalette.d.ts +11 -0
- package/lib/IconPalette.js +30 -0
- package/lib/IconPencil.cjs +59 -0
- package/lib/IconPencil.d.ts +11 -0
- package/lib/IconPencil.js +39 -0
- package/lib/IconPerson2Openarms.cjs +77 -0
- package/lib/IconPerson2Openarms.d.ts +11 -0
- package/lib/IconPerson2Openarms.js +57 -0
- package/lib/IconPersonMagnifyingglass.cjs +70 -0
- package/lib/IconPersonMagnifyingglass.d.ts +11 -0
- package/lib/IconPersonMagnifyingglass.js +50 -0
- package/lib/IconScissors.cjs +79 -0
- package/lib/IconScissors.d.ts +11 -0
- package/lib/IconScissors.js +59 -0
- package/lib/IconShoppingbag2Stacked.cjs +83 -0
- package/lib/IconShoppingbag2Stacked.d.ts +11 -0
- package/lib/IconShoppingbag2Stacked.js +63 -0
- package/lib/IconShoppingbagItems.cjs +75 -0
- package/lib/IconShoppingbagItems.d.ts +11 -0
- package/lib/IconShoppingbagItems.js +55 -0
- package/lib/IconSpraybottleSponge.cjs +66 -0
- package/lib/IconSpraybottleSponge.d.ts +11 -0
- package/lib/IconSpraybottleSponge.js +46 -0
- package/lib/IconTriangleRightChatbubbleLeft.cjs +61 -0
- package/lib/IconTriangleRightChatbubbleLeft.d.ts +11 -0
- package/lib/IconTriangleRightChatbubbleLeft.js +41 -0
- package/lib/IconTruck.cjs +82 -0
- package/lib/IconTruck.d.ts +11 -0
- package/lib/IconTruck.js +62 -0
- package/lib/IconWindow2Store.cjs +82 -0
- package/lib/IconWindow2Store.d.ts +11 -0
- package/lib/IconWindow2Store.js +62 -0
- package/lib/IconWindow4House.cjs +91 -0
- package/lib/IconWindow4House.d.ts +11 -0
- package/lib/IconWindow4House.js +71 -0
- package/lib/IconWrench.cjs +68 -0
- package/lib/IconWrench.d.ts +11 -0
- package/lib/IconWrench.js +48 -0
- package/lib/index.cjs +1514 -0
- package/lib/index.d.ts +29 -0
- package/lib/index.js +1492 -0
- package/package.json +61 -0
|
@@ -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 cutlery,dining,eat,food,fork,restaurant,spoon,가게,레스토랑,숟가락,식기,식당,식사,음식,포크
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconForkSpoon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconForkSpoon;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
// src/IconForkSpoon.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
|
+
"data-seed-icon-asset-version": "0.0.12",
|
|
12
|
+
"data-seed-icon-react-version": "0.0.16",
|
|
13
|
+
width: size,
|
|
14
|
+
height: size,
|
|
15
|
+
ref,
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsxs("g", { children: [
|
|
18
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
19
|
+
/* @__PURE__ */ jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
d: "M10.198 2.74567C9.57504 2.74567 9.06537 3.25534 9.06537 3.87828V8.4559C9.06537 8.87119 8.72558 9.21097 8.31029 9.21097C7.895 9.21097 7.55522 8.87119 7.55522 8.4559V3.87828C7.55522 3.25534 7.05499 2.74567 6.43205 2.74567C5.80912 2.74567 5.29945 3.25534 5.29945 3.87828V8.4559C5.29945 8.87119 4.95966 9.21097 4.54437 9.21097C4.12908 9.21097 3.7893 8.87119 3.7893 8.4559V3.87828C3.7893 3.25534 3.27963 2.74567 2.65669 2.74567C2.03376 2.74567 1.51465 3.24591 1.51465 3.87828V8.87119C1.51465 11.2214 2.99648 12.7032 4.79921 13.26V20.386C4.79921 21.2827 5.52597 22 6.41318 22C7.30039 22 8.02714 21.2732 8.02714 20.386V13.2695C9.83931 12.7221 11.3306 11.2402 11.3306 8.88063V3.87828C11.3306 3.25534 10.8209 2.74567 10.198 2.74567Z",
|
|
23
|
+
fill: "#FF7F29"
|
|
24
|
+
}
|
|
25
|
+
),
|
|
26
|
+
/* @__PURE__ */ jsx(
|
|
27
|
+
"path",
|
|
28
|
+
{
|
|
29
|
+
d: "M17.7664 2C15.4257 2 13.0472 3.63284 13.0472 6.73808V8.57856C13.0472 10.9665 14.4441 12.4766 16.1524 13.0524V20.3766C16.1524 21.2732 16.8792 21.9905 17.7664 21.9905C18.6536 21.9905 19.3804 21.2638 19.3804 20.3766V13.0524C21.0887 12.4766 22.4856 10.9665 22.4856 8.57856V6.73808C22.4856 3.6234 20.1071 2 17.7664 2Z",
|
|
30
|
+
fill: "#FF7F29"
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
] }),
|
|
34
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
35
|
+
/* @__PURE__ */ jsx(
|
|
36
|
+
"path",
|
|
37
|
+
{
|
|
38
|
+
d: "M4.79919 20.3858V15.6699H8.02713V20.3858C8.02713 21.273 7.30037 21.9998 6.41316 21.9998C5.52595 21.9998 4.79919 21.2825 4.79919 20.3858Z",
|
|
39
|
+
fill: "#DE5D00"
|
|
40
|
+
}
|
|
41
|
+
),
|
|
42
|
+
/* @__PURE__ */ jsx(
|
|
43
|
+
"path",
|
|
44
|
+
{
|
|
45
|
+
d: "M16.1524 20.3763V15.6699H19.3803V20.3763C19.3803 21.2635 18.6536 21.9903 17.7664 21.9903C16.8792 21.9903 16.1524 21.273 16.1524 20.3763Z",
|
|
46
|
+
fill: "#DE5D00"
|
|
47
|
+
}
|
|
48
|
+
)
|
|
49
|
+
] })
|
|
50
|
+
] })
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
var IconForkSpoon = forwardRef(Icon);
|
|
54
|
+
var IconForkSpoon_default = IconForkSpoon;
|
|
55
|
+
export {
|
|
56
|
+
IconForkSpoon_default as default
|
|
57
|
+
};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/IconForkSpoonBag.tsx
|
|
20
|
+
var IconForkSpoonBag_exports = {};
|
|
21
|
+
__export(IconForkSpoonBag_exports, {
|
|
22
|
+
default: () => IconForkSpoonBag_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(IconForkSpoonBag_exports);
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
27
|
+
var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
28
|
+
"svg",
|
|
29
|
+
{
|
|
30
|
+
viewBox: "0 0 24 24",
|
|
31
|
+
fill: "none",
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
"data-seed-icon": "true",
|
|
34
|
+
"data-seed-icon-asset-version": "0.0.12",
|
|
35
|
+
"data-seed-icon-react-version": "0.0.16",
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
ref,
|
|
39
|
+
...props,
|
|
40
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
41
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
42
|
+
"path",
|
|
43
|
+
{
|
|
44
|
+
fillRule: "evenodd",
|
|
45
|
+
clipRule: "evenodd",
|
|
46
|
+
d: "M10.2 3.4V6.2H7.80005V2.7C7.80005 1.76112 8.56116 1 9.50005 1H14.5C15.4389 1 16.2 1.76112 16.2 2.7V6.2H13.8V3.4H10.2Z",
|
|
47
|
+
fill: "#E98400"
|
|
48
|
+
}
|
|
49
|
+
),
|
|
50
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51
|
+
"path",
|
|
52
|
+
{
|
|
53
|
+
d: "M4.4152 5.29999C3.90968 5.29999 3.49031 5.69104 3.45501 6.19531L2.50671 19.7424C2.3976 21.3011 3.63267 22.6257 5.19524 22.6257H18.8048C20.3673 22.6257 21.6024 21.3011 21.4933 19.7424L20.545 6.19531C20.5097 5.69104 20.0903 5.29999 19.5848 5.29999H4.4152Z",
|
|
54
|
+
fill: "#FFAA00"
|
|
55
|
+
}
|
|
56
|
+
),
|
|
57
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
58
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
59
|
+
"path",
|
|
60
|
+
{
|
|
61
|
+
d: "M17.7106 12.0754C17.7106 11.354 17.4377 10.7516 16.9789 10.336C16.5337 9.93277 15.9602 9.74683 15.4106 9.74683C14.861 9.74683 14.2875 9.93277 13.8423 10.336C13.3835 10.7516 13.1106 11.354 13.1106 12.0754V13.0183C13.1106 13.7397 13.3835 14.342 13.8423 14.7576C14.0767 14.97 14.3467 15.1221 14.6301 15.2185V18.0468C14.6301 18.4887 14.9883 18.8468 15.4301 18.8468C15.872 18.8468 16.2301 18.4887 16.2301 18.0468V15.2048C16.4992 15.1079 16.7553 14.9602 16.9789 14.7576C17.4377 14.342 17.7106 13.7397 17.7106 13.0183V12.0754Z",
|
|
62
|
+
fill: "white"
|
|
63
|
+
}
|
|
64
|
+
),
|
|
65
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
66
|
+
"path",
|
|
67
|
+
{
|
|
68
|
+
d: "M7.72134 10.8466C7.72134 10.4048 7.36317 10.0466 6.92134 10.0466C6.47951 10.0466 6.12134 10.4048 6.12134 10.8466V12.5245C6.12134 14.0048 7.1503 15.0159 8.32056 15.3372V18.0466C8.32056 18.4885 8.67873 18.8466 9.12056 18.8466C9.56238 18.8466 9.92056 18.4885 9.92056 18.0466V15.3384C11.0903 15.0199 12.1213 14.0151 12.1213 12.5245V10.8466C12.1213 10.4048 11.7632 10.0466 11.3213 10.0466C10.8795 10.0466 10.5213 10.4048 10.5213 10.8466V12.5245C10.5213 12.9966 10.2788 13.3842 9.92056 13.6151V10.8466C9.92056 10.4048 9.56238 10.0466 9.12056 10.0466C8.67873 10.0466 8.32056 10.4048 8.32056 10.8466V13.6112C7.9636 13.3787 7.72134 12.9909 7.72134 12.5245V10.8466Z",
|
|
69
|
+
fill: "white"
|
|
70
|
+
}
|
|
71
|
+
)
|
|
72
|
+
] })
|
|
73
|
+
] })
|
|
74
|
+
}
|
|
75
|
+
);
|
|
76
|
+
var IconForkSpoonBag = (0, import_react.forwardRef)(Icon);
|
|
77
|
+
var IconForkSpoonBag_default = IconForkSpoonBag;
|
|
@@ -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 pickup,food delivery,takeaway,restaurant,food,픽업,음식 배달,테이크 아웃,레스토랑,음식,포장,service:픽업,tag:service
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconForkSpoonBag: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconForkSpoonBag;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
// src/IconForkSpoonBag.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
|
+
"data-seed-icon-asset-version": "0.0.12",
|
|
12
|
+
"data-seed-icon-react-version": "0.0.16",
|
|
13
|
+
width: size,
|
|
14
|
+
height: size,
|
|
15
|
+
ref,
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsxs("g", { children: [
|
|
18
|
+
/* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M10.2 3.4V6.2H7.80005V2.7C7.80005 1.76112 8.56116 1 9.50005 1H14.5C15.4389 1 16.2 1.76112 16.2 2.7V6.2H13.8V3.4H10.2Z",
|
|
24
|
+
fill: "#E98400"
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ jsx(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
d: "M4.4152 5.29999C3.90968 5.29999 3.49031 5.69104 3.45501 6.19531L2.50671 19.7424C2.3976 21.3011 3.63267 22.6257 5.19524 22.6257H18.8048C20.3673 22.6257 21.6024 21.3011 21.4933 19.7424L20.545 6.19531C20.5097 5.69104 20.0903 5.29999 19.5848 5.29999H4.4152Z",
|
|
31
|
+
fill: "#FFAA00"
|
|
32
|
+
}
|
|
33
|
+
),
|
|
34
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
35
|
+
/* @__PURE__ */ jsx(
|
|
36
|
+
"path",
|
|
37
|
+
{
|
|
38
|
+
d: "M17.7106 12.0754C17.7106 11.354 17.4377 10.7516 16.9789 10.336C16.5337 9.93277 15.9602 9.74683 15.4106 9.74683C14.861 9.74683 14.2875 9.93277 13.8423 10.336C13.3835 10.7516 13.1106 11.354 13.1106 12.0754V13.0183C13.1106 13.7397 13.3835 14.342 13.8423 14.7576C14.0767 14.97 14.3467 15.1221 14.6301 15.2185V18.0468C14.6301 18.4887 14.9883 18.8468 15.4301 18.8468C15.872 18.8468 16.2301 18.4887 16.2301 18.0468V15.2048C16.4992 15.1079 16.7553 14.9602 16.9789 14.7576C17.4377 14.342 17.7106 13.7397 17.7106 13.0183V12.0754Z",
|
|
39
|
+
fill: "white"
|
|
40
|
+
}
|
|
41
|
+
),
|
|
42
|
+
/* @__PURE__ */ jsx(
|
|
43
|
+
"path",
|
|
44
|
+
{
|
|
45
|
+
d: "M7.72134 10.8466C7.72134 10.4048 7.36317 10.0466 6.92134 10.0466C6.47951 10.0466 6.12134 10.4048 6.12134 10.8466V12.5245C6.12134 14.0048 7.1503 15.0159 8.32056 15.3372V18.0466C8.32056 18.4885 8.67873 18.8466 9.12056 18.8466C9.56238 18.8466 9.92056 18.4885 9.92056 18.0466V15.3384C11.0903 15.0199 12.1213 14.0151 12.1213 12.5245V10.8466C12.1213 10.4048 11.7632 10.0466 11.3213 10.0466C10.8795 10.0466 10.5213 10.4048 10.5213 10.8466V12.5245C10.5213 12.9966 10.2788 13.3842 9.92056 13.6151V10.8466C9.92056 10.4048 9.56238 10.0466 9.12056 10.0466C8.67873 10.0466 8.32056 10.4048 8.32056 10.8466V13.6112C7.9636 13.3787 7.72134 12.9909 7.72134 12.5245V10.8466Z",
|
|
46
|
+
fill: "white"
|
|
47
|
+
}
|
|
48
|
+
)
|
|
49
|
+
] })
|
|
50
|
+
] })
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
var IconForkSpoonBag = forwardRef(Icon);
|
|
54
|
+
var IconForkSpoonBag_default = IconForkSpoonBag;
|
|
55
|
+
export {
|
|
56
|
+
IconForkSpoonBag_default as default
|
|
57
|
+
};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/IconFraction_1NUppercase.tsx
|
|
20
|
+
var IconFraction_1NUppercase_exports = {};
|
|
21
|
+
__export(IconFraction_1NUppercase_exports, {
|
|
22
|
+
default: () => IconFraction_1NUppercase_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(IconFraction_1NUppercase_exports);
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
27
|
+
var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
28
|
+
"svg",
|
|
29
|
+
{
|
|
30
|
+
viewBox: "0 0 24 24",
|
|
31
|
+
fill: "none",
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
"data-seed-icon": "true",
|
|
34
|
+
"data-seed-icon-asset-version": "0.0.12",
|
|
35
|
+
"data-seed-icon-react-version": "0.0.16",
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
ref,
|
|
39
|
+
...props,
|
|
40
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
41
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
42
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
43
|
+
"path",
|
|
44
|
+
{
|
|
45
|
+
d: "M8.12007 3.3001C8.12007 2.86811 7.88788 2.46947 7.51214 2.25633C7.1364 2.04319 6.6751 2.04846 6.30432 2.27012L4.46432 3.37012C3.89548 3.71019 3.71002 4.447 4.05009 5.01585C4.39016 5.58469 5.12697 5.77014 5.69581 5.43008L5.72007 5.41558V9.8001C5.72007 10.4628 6.25732 11.0001 6.92007 11.0001C7.58281 11.0001 8.12007 10.4628 8.12007 9.8001V3.3001Z",
|
|
46
|
+
fill: "#126BE0"
|
|
47
|
+
}
|
|
48
|
+
),
|
|
49
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
50
|
+
"path",
|
|
51
|
+
{
|
|
52
|
+
d: "M16.4028 14.8094C16.0736 14.4334 15.5456 14.3008 15.0778 14.4767C14.6099 14.6526 14.3 15.1001 14.3 15.6V21.31C14.3 21.9727 14.8373 22.51 15.5 22.51C16.1628 22.51 16.7 21.9727 16.7 21.31V18.7919L19.5973 22.1005C19.9265 22.4765 20.4545 22.6091 20.9223 22.4332C21.3902 22.2573 21.7 21.8098 21.7 21.31V15.6C21.7 14.9372 21.1628 14.4 20.5 14.4C19.8373 14.4 19.3 14.9372 19.3 15.6V18.118L16.4028 14.8094Z",
|
|
53
|
+
fill: "#126BE0"
|
|
54
|
+
}
|
|
55
|
+
)
|
|
56
|
+
] }),
|
|
57
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
58
|
+
"path",
|
|
59
|
+
{
|
|
60
|
+
fillRule: "evenodd",
|
|
61
|
+
clipRule: "evenodd",
|
|
62
|
+
d: "M20.7185 3.27139C21.1871 3.74002 21.1871 4.49982 20.7185 4.96845L4.96845 20.7185C4.49982 21.1871 3.74002 21.1871 3.27139 20.7185C2.80276 20.2498 2.80276 19.49 3.27139 19.0214L19.0214 3.27139C19.49 2.80276 20.2498 2.80276 20.7185 3.27139Z",
|
|
63
|
+
fill: "#55A7FF"
|
|
64
|
+
}
|
|
65
|
+
)
|
|
66
|
+
] })
|
|
67
|
+
}
|
|
68
|
+
);
|
|
69
|
+
var IconFraction_1NUppercase = (0, import_react.forwardRef)(Icon);
|
|
70
|
+
var IconFraction_1NUppercase_default = IconFraction_1NUppercase;
|
|
@@ -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 더치페이,결제,당근페이,계산,돈,n,1,dutch,pay,money
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconFraction_1NUppercase: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconFraction_1NUppercase;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
// src/IconFraction_1NUppercase.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
|
+
"data-seed-icon-asset-version": "0.0.12",
|
|
12
|
+
"data-seed-icon-react-version": "0.0.16",
|
|
13
|
+
width: size,
|
|
14
|
+
height: size,
|
|
15
|
+
ref,
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsxs("g", { children: [
|
|
18
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
19
|
+
/* @__PURE__ */ jsx(
|
|
20
|
+
"path",
|
|
21
|
+
{
|
|
22
|
+
d: "M8.12007 3.3001C8.12007 2.86811 7.88788 2.46947 7.51214 2.25633C7.1364 2.04319 6.6751 2.04846 6.30432 2.27012L4.46432 3.37012C3.89548 3.71019 3.71002 4.447 4.05009 5.01585C4.39016 5.58469 5.12697 5.77014 5.69581 5.43008L5.72007 5.41558V9.8001C5.72007 10.4628 6.25732 11.0001 6.92007 11.0001C7.58281 11.0001 8.12007 10.4628 8.12007 9.8001V3.3001Z",
|
|
23
|
+
fill: "#126BE0"
|
|
24
|
+
}
|
|
25
|
+
),
|
|
26
|
+
/* @__PURE__ */ jsx(
|
|
27
|
+
"path",
|
|
28
|
+
{
|
|
29
|
+
d: "M16.4028 14.8094C16.0736 14.4334 15.5456 14.3008 15.0778 14.4767C14.6099 14.6526 14.3 15.1001 14.3 15.6V21.31C14.3 21.9727 14.8373 22.51 15.5 22.51C16.1628 22.51 16.7 21.9727 16.7 21.31V18.7919L19.5973 22.1005C19.9265 22.4765 20.4545 22.6091 20.9223 22.4332C21.3902 22.2573 21.7 21.8098 21.7 21.31V15.6C21.7 14.9372 21.1628 14.4 20.5 14.4C19.8373 14.4 19.3 14.9372 19.3 15.6V18.118L16.4028 14.8094Z",
|
|
30
|
+
fill: "#126BE0"
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
] }),
|
|
34
|
+
/* @__PURE__ */ jsx(
|
|
35
|
+
"path",
|
|
36
|
+
{
|
|
37
|
+
fillRule: "evenodd",
|
|
38
|
+
clipRule: "evenodd",
|
|
39
|
+
d: "M20.7185 3.27139C21.1871 3.74002 21.1871 4.49982 20.7185 4.96845L4.96845 20.7185C4.49982 21.1871 3.74002 21.1871 3.27139 20.7185C2.80276 20.2498 2.80276 19.49 3.27139 19.0214L19.0214 3.27139C19.49 2.80276 20.2498 2.80276 20.7185 3.27139Z",
|
|
40
|
+
fill: "#55A7FF"
|
|
41
|
+
}
|
|
42
|
+
)
|
|
43
|
+
] })
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
var IconFraction_1NUppercase = forwardRef(Icon);
|
|
47
|
+
var IconFraction_1NUppercase_default = IconFraction_1NUppercase;
|
|
48
|
+
export {
|
|
49
|
+
IconFraction_1NUppercase_default as default
|
|
50
|
+
};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/IconHospital.tsx
|
|
20
|
+
var IconHospital_exports = {};
|
|
21
|
+
__export(IconHospital_exports, {
|
|
22
|
+
default: () => IconHospital_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(IconHospital_exports);
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
27
|
+
var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
28
|
+
"svg",
|
|
29
|
+
{
|
|
30
|
+
viewBox: "0 0 24 24",
|
|
31
|
+
fill: "none",
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
"data-seed-icon": "true",
|
|
34
|
+
"data-seed-icon-asset-version": "0.0.12",
|
|
35
|
+
"data-seed-icon-react-version": "0.0.16",
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
ref,
|
|
39
|
+
...props,
|
|
40
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
41
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
42
|
+
"path",
|
|
43
|
+
{
|
|
44
|
+
d: "M12 1C8.76 1 5.88 1.61972 4.06 2.57928C3.4 2.91913 3 3.60881 3 4.34848V6.73739V21.0009C3 22.1004 3.9 23 5 23H19C20.1 23 21 22.1004 21 21.0009V4.34848C21 3.60881 20.6 2.91913 19.94 2.57928C18.12 1.61972 15.24 1 12 1Z",
|
|
45
|
+
fill: "#2CCA6F"
|
|
46
|
+
}
|
|
47
|
+
),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
49
|
+
"path",
|
|
50
|
+
{
|
|
51
|
+
d: "M13.25 10.25V12C13.25 12.4142 12.9142 12.75 12.5 12.75H11.5C11.0858 12.75 10.75 12.4142 10.75 12V10.25H9C8.58579 10.25 8.25 9.91421 8.25 9.5V8.5C8.25 8.08579 8.58579 7.75 9 7.75H10.75V6C10.75 5.58579 11.0858 5.25 11.5 5.25H12.5C12.9142 5.25 13.25 5.58579 13.25 6V7.75H15C15.4142 7.75 15.75 8.08579 15.75 8.5V9.5C15.75 9.91421 15.4142 10.25 15 10.25H13.25Z",
|
|
52
|
+
fill: "white"
|
|
53
|
+
}
|
|
54
|
+
),
|
|
55
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
56
|
+
"path",
|
|
57
|
+
{
|
|
58
|
+
d: "M12 16C13.66 16 15 17.34 15 19V23H9V19C9 17.34 10.34 16 12 16Z",
|
|
59
|
+
fill: "#25A18E"
|
|
60
|
+
}
|
|
61
|
+
)
|
|
62
|
+
] })
|
|
63
|
+
}
|
|
64
|
+
);
|
|
65
|
+
var IconHospital = (0, import_react.forwardRef)(Icon);
|
|
66
|
+
var IconHospital_default = IconHospital;
|
|
@@ -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 병원,건물,의료,medical,hospital,building,clinic
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconHospital: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconHospital;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
// src/IconHospital.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
|
+
"data-seed-icon-asset-version": "0.0.12",
|
|
12
|
+
"data-seed-icon-react-version": "0.0.16",
|
|
13
|
+
width: size,
|
|
14
|
+
height: size,
|
|
15
|
+
ref,
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsxs("g", { children: [
|
|
18
|
+
/* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
d: "M12 1C8.76 1 5.88 1.61972 4.06 2.57928C3.4 2.91913 3 3.60881 3 4.34848V6.73739V21.0009C3 22.1004 3.9 23 5 23H19C20.1 23 21 22.1004 21 21.0009V4.34848C21 3.60881 20.6 2.91913 19.94 2.57928C18.12 1.61972 15.24 1 12 1Z",
|
|
22
|
+
fill: "#2CCA6F"
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ jsx(
|
|
26
|
+
"path",
|
|
27
|
+
{
|
|
28
|
+
d: "M13.25 10.25V12C13.25 12.4142 12.9142 12.75 12.5 12.75H11.5C11.0858 12.75 10.75 12.4142 10.75 12V10.25H9C8.58579 10.25 8.25 9.91421 8.25 9.5V8.5C8.25 8.08579 8.58579 7.75 9 7.75H10.75V6C10.75 5.58579 11.0858 5.25 11.5 5.25H12.5C12.9142 5.25 13.25 5.58579 13.25 6V7.75H15C15.4142 7.75 15.75 8.08579 15.75 8.5V9.5C15.75 9.91421 15.4142 10.25 15 10.25H13.25Z",
|
|
29
|
+
fill: "white"
|
|
30
|
+
}
|
|
31
|
+
),
|
|
32
|
+
/* @__PURE__ */ jsx(
|
|
33
|
+
"path",
|
|
34
|
+
{
|
|
35
|
+
d: "M12 16C13.66 16 15 17.34 15 19V23H9V19C9 17.34 10.34 16 12 16Z",
|
|
36
|
+
fill: "#25A18E"
|
|
37
|
+
}
|
|
38
|
+
)
|
|
39
|
+
] })
|
|
40
|
+
}
|
|
41
|
+
);
|
|
42
|
+
var IconHospital = forwardRef(Icon);
|
|
43
|
+
var IconHospital_default = IconHospital;
|
|
44
|
+
export {
|
|
45
|
+
IconHospital_default as default
|
|
46
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/IconLinechartUpXaxis.tsx
|
|
20
|
+
var IconLinechartUpXaxis_exports = {};
|
|
21
|
+
__export(IconLinechartUpXaxis_exports, {
|
|
22
|
+
default: () => IconLinechartUpXaxis_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(IconLinechartUpXaxis_exports);
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
27
|
+
var Icon = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
28
|
+
"svg",
|
|
29
|
+
{
|
|
30
|
+
viewBox: "0 0 24 24",
|
|
31
|
+
fill: "none",
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
"data-seed-icon": "true",
|
|
34
|
+
"data-seed-icon-asset-version": "0.0.12",
|
|
35
|
+
"data-seed-icon-react-version": "0.0.16",
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
ref,
|
|
39
|
+
...props,
|
|
40
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
41
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
42
|
+
"path",
|
|
43
|
+
{
|
|
44
|
+
d: "M22.1133 3.53999C21.9933 3.24999 21.7533 3.00999 21.4633 2.88999C21.3133 2.82999 21.1633 2.79999 21.0033 2.79999H15.0033C14.3433 2.79999 13.8033 3.33999 13.8033 3.99999C13.8033 4.65999 14.3433 5.19999 15.0033 5.19999H18.1033L13.0033 10.3L10.8533 8.14999C10.3833 7.67999 9.62328 7.67999 9.15328 8.14999L2.15328 15.15C1.68328 15.62 1.68328 16.38 2.15328 16.85C2.6208 17.3175 3.38255 17.3011 3.85328 16.85L10.0033 10.7L12.1533 12.85C12.6233 13.32 13.3833 13.32 13.8533 12.85L19.8033 6.89999V9.99999C19.8033 10.66 20.3433 11.2 21.0033 11.2C21.6633 11.2 22.2033 10.66 22.2033 9.99999V3.99999C22.2033 3.83999 22.1733 3.68999 22.1133 3.53999Z",
|
|
45
|
+
fill: "#20C578"
|
|
46
|
+
}
|
|
47
|
+
),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
49
|
+
"path",
|
|
50
|
+
{
|
|
51
|
+
d: "M21.0027 18.8H3.00273C2.34273 18.8 1.80273 19.34 1.80273 20C1.80273 20.66 2.34273 21.2 3.00273 21.2H21.0027C21.6627 21.2 22.2027 20.66 22.2027 20C22.2027 19.34 21.6627 18.8 21.0027 18.8Z",
|
|
52
|
+
fill: "#2DA871"
|
|
53
|
+
}
|
|
54
|
+
)
|
|
55
|
+
] }) })
|
|
56
|
+
}
|
|
57
|
+
);
|
|
58
|
+
var IconLinechartUpXaxis = (0, import_react.forwardRef)(Icon);
|
|
59
|
+
var IconLinechartUpXaxis_default = IconLinechartUpXaxis;
|
|
@@ -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 ad,graph,boost,growth,increase,trend,statistics,data,광고,부스터,부스트,성장,증가,추세,통계,데이터,이웃광고,service:이웃광고,tag:service
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconLinechartUpXaxis: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconLinechartUpXaxis;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// src/IconLinechartUpXaxis.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
|
+
"data-seed-icon-asset-version": "0.0.12",
|
|
12
|
+
"data-seed-icon-react-version": "0.0.16",
|
|
13
|
+
width: size,
|
|
14
|
+
height: size,
|
|
15
|
+
ref,
|
|
16
|
+
...props,
|
|
17
|
+
children: /* @__PURE__ */ jsx("g", { children: /* @__PURE__ */ jsxs("g", { children: [
|
|
18
|
+
/* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
d: "M22.1133 3.53999C21.9933 3.24999 21.7533 3.00999 21.4633 2.88999C21.3133 2.82999 21.1633 2.79999 21.0033 2.79999H15.0033C14.3433 2.79999 13.8033 3.33999 13.8033 3.99999C13.8033 4.65999 14.3433 5.19999 15.0033 5.19999H18.1033L13.0033 10.3L10.8533 8.14999C10.3833 7.67999 9.62328 7.67999 9.15328 8.14999L2.15328 15.15C1.68328 15.62 1.68328 16.38 2.15328 16.85C2.6208 17.3175 3.38255 17.3011 3.85328 16.85L10.0033 10.7L12.1533 12.85C12.6233 13.32 13.3833 13.32 13.8533 12.85L19.8033 6.89999V9.99999C19.8033 10.66 20.3433 11.2 21.0033 11.2C21.6633 11.2 22.2033 10.66 22.2033 9.99999V3.99999C22.2033 3.83999 22.1733 3.68999 22.1133 3.53999Z",
|
|
22
|
+
fill: "#20C578"
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ jsx(
|
|
26
|
+
"path",
|
|
27
|
+
{
|
|
28
|
+
d: "M21.0027 18.8H3.00273C2.34273 18.8 1.80273 19.34 1.80273 20C1.80273 20.66 2.34273 21.2 3.00273 21.2H21.0027C21.6627 21.2 22.2027 20.66 22.2027 20C22.2027 19.34 21.6627 18.8 21.0027 18.8Z",
|
|
29
|
+
fill: "#2DA871"
|
|
30
|
+
}
|
|
31
|
+
)
|
|
32
|
+
] }) })
|
|
33
|
+
}
|
|
34
|
+
);
|
|
35
|
+
var IconLinechartUpXaxis = forwardRef(Icon);
|
|
36
|
+
var IconLinechartUpXaxis_default = IconLinechartUpXaxis;
|
|
37
|
+
export {
|
|
38
|
+
IconLinechartUpXaxis_default as default
|
|
39
|
+
};
|