@karrotmarket/react-multicolor-icon 1.12.0 → 1.15.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/IconCupcake.cjs +72 -0
- package/lib/IconCupcake.d.ts +11 -0
- package/lib/IconCupcake.js +51 -0
- package/lib/IconEyebrow.cjs +58 -0
- package/lib/IconEyebrow.d.ts +11 -0
- package/lib/IconEyebrow.js +37 -0
- package/lib/IconHandDrop.cjs +58 -0
- package/lib/IconHandDrop.d.ts +11 -0
- package/lib/IconHandDrop.js +37 -0
- package/lib/IconHouseCard.cjs +68 -0
- package/lib/IconHouseCard.d.ts +11 -0
- package/lib/IconHouseCard.js +47 -0
- package/lib/IconPercentArrowshapeDown.cjs +74 -0
- package/lib/IconPercentArrowshapeDown.d.ts +11 -0
- package/lib/IconPercentArrowshapeDown.js +53 -0
- package/lib/IconWandPlusCircle.cjs +97 -0
- package/lib/IconWandPlusCircle.d.ts +11 -0
- package/lib/IconWandPlusCircle.js +66 -0
- package/lib/index.cjs +846 -561
- package/lib/index.d.ts +6 -0
- package/lib/index.js +128 -116
- package/package.json +1 -1
|
@@ -0,0 +1,97 @@
|
|
|
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/IconWandPlusCircle.tsx
|
|
31
|
+
var IconWandPlusCircle_exports = {};
|
|
32
|
+
__export(IconWandPlusCircle_exports, {
|
|
33
|
+
default: () => IconWandPlusCircle_default
|
|
34
|
+
});
|
|
35
|
+
module.exports = __toCommonJS(IconWandPlusCircle_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: "M6.1537 21.6612C5.85287 22.012 5.34746 22.116 4.95582 21.8708C4.40658 21.5269 3.89018 21.1203 3.41735 20.6475C2.94249 20.1726 2.53442 19.6538 2.1896 19.1019C1.94678 18.7133 2.04726 18.2123 2.39198 17.9104L13.0001 8.62036L15.2978 11L6.1537 21.6612Z",
|
|
58
|
+
fill: "#B93901"
|
|
59
|
+
}
|
|
60
|
+
),
|
|
61
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
62
|
+
"path",
|
|
63
|
+
{
|
|
64
|
+
d: "M20.1412 3.16699C20.6061 3.01775 21.0451 3.45674 20.8959 3.92166L19.5519 8.10842C19.4746 8.34938 19.5568 8.61296 19.7573 8.7673L22.3559 10.767C22.7959 11.1057 22.5795 11.8089 22.0252 11.8415L18.0246 12.0768C17.7796 12.0912 17.5682 12.2533 17.4906 12.486L15.7394 17.7397C15.5545 18.2943 14.7664 18.284 14.5962 17.7247L12.7658 11.7105C12.7057 11.5133 12.5486 11.3606 12.3496 11.3064L6.61832 9.74329C6.06298 9.59184 6.01891 8.82113 6.55336 8.60735L11.585 6.59468C11.8128 6.50356 11.9622 6.28294 11.9622 6.03759L11.9622 1.81169C11.9622 1.2422 12.6813 0.993073 13.0336 1.4405L15.2949 4.31234C15.45 4.50924 15.7111 4.58903 15.9497 4.51243L20.1412 3.16699Z",
|
|
65
|
+
fill: `url(#${id}_paint_0)`
|
|
66
|
+
}
|
|
67
|
+
),
|
|
68
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
69
|
+
"path",
|
|
70
|
+
{
|
|
71
|
+
d: "M4.5 0.999023C5.05228 0.999023 5.5 1.44674 5.5 1.99902V3.5H6.99805C7.55033 3.5 7.99805 3.94772 7.99805 4.5C7.99805 5.05228 7.55033 5.5 6.99805 5.5H5.5V6.99902C5.5 7.55131 5.05228 7.99902 4.5 7.99902C3.94772 7.99902 3.5 7.55131 3.5 6.99902V5.5H1.99805C1.44576 5.5 0.998047 5.05228 0.998047 4.5C0.998047 3.94772 1.44576 3.5 1.99805 3.5H3.5V1.99902C3.5 1.44674 3.94772 0.999023 4.5 0.999023Z",
|
|
72
|
+
fill: "#FC650E"
|
|
73
|
+
}
|
|
74
|
+
),
|
|
75
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: 20.5, cy: 19.5, r: 2.5, fill: "#E15E88" })
|
|
76
|
+
] }),
|
|
77
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
78
|
+
"linearGradient",
|
|
79
|
+
{
|
|
80
|
+
id: `${id}_paint_0`,
|
|
81
|
+
x1: 6.17615,
|
|
82
|
+
y1: 18.15,
|
|
83
|
+
x2: 23.1611,
|
|
84
|
+
y2: 1.80303,
|
|
85
|
+
gradientUnits: "userSpaceOnUse",
|
|
86
|
+
children: [
|
|
87
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: 0.2, stopColor: "#FF6600" }),
|
|
88
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("stop", { offset: 1, stopColor: "#D25ACA" })
|
|
89
|
+
]
|
|
90
|
+
}
|
|
91
|
+
) })
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
);
|
|
95
|
+
};
|
|
96
|
+
var IconWandPlusCircle = (0, import_react.forwardRef)(Icon);
|
|
97
|
+
var IconWandPlusCircle_default = IconWandPlusCircle;
|
|
@@ -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,마법,별,wand,agent,ai,magic,star,tag:service
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconWandPlusCircle: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconWandPlusCircle;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
// src/IconWandPlusCircle.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: "M6.1537 21.6612C5.85287 22.012 5.34746 22.116 4.95582 21.8708C4.40658 21.5269 3.89018 21.1203 3.41735 20.6475C2.94249 20.1726 2.53442 19.6538 2.1896 19.1019C1.94678 18.7133 2.04726 18.2123 2.39198 17.9104L13.0001 8.62036L15.2978 11L6.1537 21.6612Z",
|
|
24
|
+
fill: "#B93901"
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ jsx(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
d: "M20.1412 3.16699C20.6061 3.01775 21.0451 3.45674 20.8959 3.92166L19.5519 8.10842C19.4746 8.34938 19.5568 8.61296 19.7573 8.7673L22.3559 10.767C22.7959 11.1057 22.5795 11.8089 22.0252 11.8415L18.0246 12.0768C17.7796 12.0912 17.5682 12.2533 17.4906 12.486L15.7394 17.7397C15.5545 18.2943 14.7664 18.284 14.5962 17.7247L12.7658 11.7105C12.7057 11.5133 12.5486 11.3606 12.3496 11.3064L6.61832 9.74329C6.06298 9.59184 6.01891 8.82113 6.55336 8.60735L11.585 6.59468C11.8128 6.50356 11.9622 6.28294 11.9622 6.03759L11.9622 1.81169C11.9622 1.2422 12.6813 0.993073 13.0336 1.4405L15.2949 4.31234C15.45 4.50924 15.7111 4.58903 15.9497 4.51243L20.1412 3.16699Z",
|
|
31
|
+
fill: `url(#${id}_paint_0)`
|
|
32
|
+
}
|
|
33
|
+
),
|
|
34
|
+
/* @__PURE__ */ jsx(
|
|
35
|
+
"path",
|
|
36
|
+
{
|
|
37
|
+
d: "M4.5 0.999023C5.05228 0.999023 5.5 1.44674 5.5 1.99902V3.5H6.99805C7.55033 3.5 7.99805 3.94772 7.99805 4.5C7.99805 5.05228 7.55033 5.5 6.99805 5.5H5.5V6.99902C5.5 7.55131 5.05228 7.99902 4.5 7.99902C3.94772 7.99902 3.5 7.55131 3.5 6.99902V5.5H1.99805C1.44576 5.5 0.998047 5.05228 0.998047 4.5C0.998047 3.94772 1.44576 3.5 1.99805 3.5H3.5V1.99902C3.5 1.44674 3.94772 0.999023 4.5 0.999023Z",
|
|
38
|
+
fill: "#FC650E"
|
|
39
|
+
}
|
|
40
|
+
),
|
|
41
|
+
/* @__PURE__ */ jsx("circle", { cx: 20.5, cy: 19.5, r: 2.5, fill: "#E15E88" })
|
|
42
|
+
] }),
|
|
43
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
|
|
44
|
+
"linearGradient",
|
|
45
|
+
{
|
|
46
|
+
id: `${id}_paint_0`,
|
|
47
|
+
x1: 6.17615,
|
|
48
|
+
y1: 18.15,
|
|
49
|
+
x2: 23.1611,
|
|
50
|
+
y2: 1.80303,
|
|
51
|
+
gradientUnits: "userSpaceOnUse",
|
|
52
|
+
children: [
|
|
53
|
+
/* @__PURE__ */ jsx("stop", { offset: 0.2, stopColor: "#FF6600" }),
|
|
54
|
+
/* @__PURE__ */ jsx("stop", { offset: 1, stopColor: "#D25ACA" })
|
|
55
|
+
]
|
|
56
|
+
}
|
|
57
|
+
) })
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
);
|
|
61
|
+
};
|
|
62
|
+
var IconWandPlusCircle = forwardRef(Icon);
|
|
63
|
+
var IconWandPlusCircle_default = IconWandPlusCircle;
|
|
64
|
+
export {
|
|
65
|
+
IconWandPlusCircle_default as default
|
|
66
|
+
};
|