@karrotmarket/react-multicolor-icon 1.18.0 → 1.19.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/IconBell.cjs +60 -0
- package/lib/IconBell.d.ts +11 -0
- package/lib/IconBell.js +39 -0
- package/lib/IconPicture2Stacked.cjs +78 -0
- package/lib/IconPicture2Stacked.d.ts +11 -0
- package/lib/IconPicture2Stacked.js +57 -0
- package/lib/index.cjs +100 -6
- package/lib/index.d.ts +2 -0
- package/lib/index.js +4 -0
- package/package.json +1 -1
package/lib/IconBell.cjs
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
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/IconBell.tsx
|
|
21
|
+
var IconBell_exports = {};
|
|
22
|
+
__export(IconBell_exports, {
|
|
23
|
+
default: () => IconBell_default
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(IconBell_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: "M14.447 16.5186L14.4831 16.5195C15.4891 16.5571 16.2746 17.4032 16.237 18.4092C16.1525 20.6672 14.6955 22.9814 11.9997 22.9814C9.304 22.9813 7.84786 20.6672 7.76338 18.4092C7.7258 17.4033 8.51043 16.5572 9.51631 16.5195L9.55342 16.5186H14.447Z",
|
|
44
|
+
fill: "#E68507"
|
|
45
|
+
}
|
|
46
|
+
),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
48
|
+
"path",
|
|
49
|
+
{
|
|
50
|
+
fillRule: "evenodd",
|
|
51
|
+
clipRule: "evenodd",
|
|
52
|
+
d: "M11.9993 1C16.7477 1.00015 20.3713 4.62701 20.3714 9.13379L20.3724 12.8467C20.3724 14.5148 20.7086 15.6402 21.2738 16.6562C21.4182 16.9161 21.4399 17.2268 21.3324 17.5039C21.2247 17.781 20.9991 17.9965 20.7171 18.0908C15.5047 19.8333 8.19026 19.8034 3.26985 18.0859C2.99145 17.9886 2.76931 17.7737 2.66438 17.498C2.55951 17.2223 2.58256 16.9141 2.72591 16.6562C3.29127 15.64 3.62724 14.5147 3.62727 12.8467L3.6263 9.13477C3.62645 4.62803 7.25103 1.00023 11.9993 1Z",
|
|
53
|
+
fill: "#FFB700"
|
|
54
|
+
}
|
|
55
|
+
)
|
|
56
|
+
] })
|
|
57
|
+
}
|
|
58
|
+
);
|
|
59
|
+
var IconBell = (0, import_react.forwardRef)(Icon);
|
|
60
|
+
var IconBell_default = IconBell;
|
|
@@ -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,bell,noti,notification,노티,알림,종
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconBell: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconBell;
|
package/lib/IconBell.js
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// src/IconBell.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: "M14.447 16.5186L14.4831 16.5195C15.4891 16.5571 16.2746 17.4032 16.237 18.4092C16.1525 20.6672 14.6955 22.9814 11.9997 22.9814C9.304 22.9813 7.84786 20.6672 7.76338 18.4092C7.7258 17.4033 8.51043 16.5572 9.51631 16.5195L9.55342 16.5186H14.447Z",
|
|
20
|
+
fill: "#E68507"
|
|
21
|
+
}
|
|
22
|
+
),
|
|
23
|
+
/* @__PURE__ */ jsx(
|
|
24
|
+
"path",
|
|
25
|
+
{
|
|
26
|
+
fillRule: "evenodd",
|
|
27
|
+
clipRule: "evenodd",
|
|
28
|
+
d: "M11.9993 1C16.7477 1.00015 20.3713 4.62701 20.3714 9.13379L20.3724 12.8467C20.3724 14.5148 20.7086 15.6402 21.2738 16.6562C21.4182 16.9161 21.4399 17.2268 21.3324 17.5039C21.2247 17.781 20.9991 17.9965 20.7171 18.0908C15.5047 19.8333 8.19026 19.8034 3.26985 18.0859C2.99145 17.9886 2.76931 17.7737 2.66438 17.498C2.55951 17.2223 2.58256 16.9141 2.72591 16.6562C3.29127 15.64 3.62724 14.5147 3.62727 12.8467L3.6263 9.13477C3.62645 4.62803 7.25103 1.00023 11.9993 1Z",
|
|
29
|
+
fill: "#FFB700"
|
|
30
|
+
}
|
|
31
|
+
)
|
|
32
|
+
] })
|
|
33
|
+
}
|
|
34
|
+
);
|
|
35
|
+
var IconBell = forwardRef(Icon);
|
|
36
|
+
var IconBell_default = IconBell;
|
|
37
|
+
export {
|
|
38
|
+
IconBell_default as default
|
|
39
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
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/IconPicture2Stacked.tsx
|
|
21
|
+
var IconPicture2Stacked_exports = {};
|
|
22
|
+
__export(IconPicture2Stacked_exports, {
|
|
23
|
+
default: () => IconPicture2Stacked_default
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(IconPicture2Stacked_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
|
+
fillRule: "evenodd",
|
|
44
|
+
clipRule: "evenodd",
|
|
45
|
+
d: "M6.86222 4.1589C7.09257 2.79773 8.38285 1.88097 9.74405 2.11105L20.0937 3.86105C21.4547 4.09157 22.3717 5.38267 22.1415 6.74386L20.3915 17.0925C20.1611 18.4535 18.8698 19.3703 17.5087 19.1403L7.16007 17.3903C5.7989 17.1601 4.88234 15.8697 5.11222 14.5085L6.86222 4.1589Z",
|
|
46
|
+
fill: "#1D7EDE"
|
|
47
|
+
}
|
|
48
|
+
),
|
|
49
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
50
|
+
"path",
|
|
51
|
+
{
|
|
52
|
+
fillRule: "evenodd",
|
|
53
|
+
clipRule: "evenodd",
|
|
54
|
+
d: "M15 7C16.1046 7 17 7.89543 17 9V19.5C17 20.8807 15.8807 22 14.5 22H4.5C3.11929 22 2 20.8807 2 19.5V9C2 7.89543 2.89543 7 4 7H15Z",
|
|
55
|
+
fill: "#3CBAF9"
|
|
56
|
+
}
|
|
57
|
+
),
|
|
58
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
59
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
60
|
+
"path",
|
|
61
|
+
{
|
|
62
|
+
d: "M7.70597 14.3369C8.01885 14.0851 8.47757 14.1036 8.76945 14.3916L10.8134 16.4121L11.5741 15.6729L11.6347 15.6191C11.9504 15.3687 12.4106 15.3921 12.7001 15.6846L13.9716 16.9697C14.2822 17.2839 14.2789 17.7909 13.9648 18.1016C13.6506 18.4118 13.1444 18.4088 12.8339 18.0947L12.12 17.373L11.3671 18.1055C11.0549 18.4091 10.5568 18.4076 10.247 18.1016L8.20597 16.085L6.15812 18.1025C5.84335 18.4125 5.33632 18.4085 5.02629 18.0938C4.71685 17.779 4.72077 17.2728 5.03507 16.9629L7.64543 14.3906L7.70597 14.3369Z",
|
|
63
|
+
fill: "white"
|
|
64
|
+
}
|
|
65
|
+
),
|
|
66
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
67
|
+
"path",
|
|
68
|
+
{
|
|
69
|
+
d: "M12.2558 10.1748C12.9837 10.1748 13.5739 10.7653 13.5741 11.4932C13.5741 12.2213 12.9839 12.8115 12.2558 12.8115C11.5279 12.8113 10.9374 12.2211 10.9374 11.4932C10.9377 10.7654 11.528 10.175 12.2558 10.1748Z",
|
|
70
|
+
fill: "white"
|
|
71
|
+
}
|
|
72
|
+
)
|
|
73
|
+
] })
|
|
74
|
+
] })
|
|
75
|
+
}
|
|
76
|
+
);
|
|
77
|
+
var IconPicture2Stacked = (0, import_react.forwardRef)(Icon);
|
|
78
|
+
var IconPicture2Stacked_default = IconPicture2Stacked;
|
|
@@ -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 image,images,photo,photo_several,photos,pictures,stack,photo_diary,picture_diary,photo_journal,다중이미지,복수,사진,스택,앨범,이미지,첨부, 사진일기,사진기록,포토다이어리
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconPicture2Stacked: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconPicture2Stacked;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
// src/IconPicture2Stacked.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
|
+
fillRule: "evenodd",
|
|
20
|
+
clipRule: "evenodd",
|
|
21
|
+
d: "M6.86222 4.1589C7.09257 2.79773 8.38285 1.88097 9.74405 2.11105L20.0937 3.86105C21.4547 4.09157 22.3717 5.38267 22.1415 6.74386L20.3915 17.0925C20.1611 18.4535 18.8698 19.3703 17.5087 19.1403L7.16007 17.3903C5.7989 17.1601 4.88234 15.8697 5.11222 14.5085L6.86222 4.1589Z",
|
|
22
|
+
fill: "#1D7EDE"
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ jsx(
|
|
26
|
+
"path",
|
|
27
|
+
{
|
|
28
|
+
fillRule: "evenodd",
|
|
29
|
+
clipRule: "evenodd",
|
|
30
|
+
d: "M15 7C16.1046 7 17 7.89543 17 9V19.5C17 20.8807 15.8807 22 14.5 22H4.5C3.11929 22 2 20.8807 2 19.5V9C2 7.89543 2.89543 7 4 7H15Z",
|
|
31
|
+
fill: "#3CBAF9"
|
|
32
|
+
}
|
|
33
|
+
),
|
|
34
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
35
|
+
/* @__PURE__ */ jsx(
|
|
36
|
+
"path",
|
|
37
|
+
{
|
|
38
|
+
d: "M7.70597 14.3369C8.01885 14.0851 8.47757 14.1036 8.76945 14.3916L10.8134 16.4121L11.5741 15.6729L11.6347 15.6191C11.9504 15.3687 12.4106 15.3921 12.7001 15.6846L13.9716 16.9697C14.2822 17.2839 14.2789 17.7909 13.9648 18.1016C13.6506 18.4118 13.1444 18.4088 12.8339 18.0947L12.12 17.373L11.3671 18.1055C11.0549 18.4091 10.5568 18.4076 10.247 18.1016L8.20597 16.085L6.15812 18.1025C5.84335 18.4125 5.33632 18.4085 5.02629 18.0938C4.71685 17.779 4.72077 17.2728 5.03507 16.9629L7.64543 14.3906L7.70597 14.3369Z",
|
|
39
|
+
fill: "white"
|
|
40
|
+
}
|
|
41
|
+
),
|
|
42
|
+
/* @__PURE__ */ jsx(
|
|
43
|
+
"path",
|
|
44
|
+
{
|
|
45
|
+
d: "M12.2558 10.1748C12.9837 10.1748 13.5739 10.7653 13.5741 11.4932C13.5741 12.2213 12.9839 12.8115 12.2558 12.8115C11.5279 12.8113 10.9374 12.2211 10.9374 11.4932C10.9377 10.7654 11.528 10.175 12.2558 10.1748Z",
|
|
46
|
+
fill: "white"
|
|
47
|
+
}
|
|
48
|
+
)
|
|
49
|
+
] })
|
|
50
|
+
] })
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
var IconPicture2Stacked = forwardRef(Icon);
|
|
54
|
+
var IconPicture2Stacked_default = IconPicture2Stacked;
|
|
55
|
+
export {
|
|
56
|
+
IconPicture2Stacked_default as default
|
|
57
|
+
};
|
package/lib/index.cjs
CHANGED
|
@@ -1249,7 +1249,7 @@ var require_react_development = __commonJS({
|
|
|
1249
1249
|
}
|
|
1250
1250
|
return lazyType;
|
|
1251
1251
|
}
|
|
1252
|
-
function
|
|
1252
|
+
function forwardRef92(render) {
|
|
1253
1253
|
{
|
|
1254
1254
|
if (render != null && render.$$typeof === REACT_MEMO_TYPE) {
|
|
1255
1255
|
error("forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...)).");
|
|
@@ -2147,7 +2147,7 @@ var require_react_development = __commonJS({
|
|
|
2147
2147
|
exports.createElement = createElement$1;
|
|
2148
2148
|
exports.createFactory = createFactory;
|
|
2149
2149
|
exports.createRef = createRef;
|
|
2150
|
-
exports.forwardRef =
|
|
2150
|
+
exports.forwardRef = forwardRef92;
|
|
2151
2151
|
exports.isValidElement = isValidElement;
|
|
2152
2152
|
exports.lazy = lazy;
|
|
2153
2153
|
exports.memo = memo;
|
|
@@ -3097,11 +3097,11 @@ var require_react_jsx_runtime_development = __commonJS({
|
|
|
3097
3097
|
return jsxWithValidation(type, props, key, false);
|
|
3098
3098
|
}
|
|
3099
3099
|
}
|
|
3100
|
-
var
|
|
3101
|
-
var
|
|
3100
|
+
var jsx92 = jsxWithValidationDynamic;
|
|
3101
|
+
var jsxs92 = jsxWithValidationStatic;
|
|
3102
3102
|
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
3103
|
-
exports.jsx =
|
|
3104
|
-
exports.jsxs =
|
|
3103
|
+
exports.jsx = jsx92;
|
|
3104
|
+
exports.jsxs = jsxs92;
|
|
3105
3105
|
})();
|
|
3106
3106
|
}
|
|
3107
3107
|
}
|
|
@@ -3127,6 +3127,7 @@ __export(src_exports, {
|
|
|
3127
3127
|
IconArrowUpRightShoppingbagTilted: () => IconArrowUpRightShoppingbagTilted_default,
|
|
3128
3128
|
IconArrowshapeCircle2: () => IconArrowshapeCircle2_default,
|
|
3129
3129
|
IconAsteriskHorizrectangleCoolwave3: () => IconAsteriskHorizrectangleCoolwave3_default,
|
|
3130
|
+
IconBell: () => IconBell_default,
|
|
3130
3131
|
IconBook: () => IconBook_default,
|
|
3131
3132
|
IconBoxFlap: () => IconBoxFlap_default,
|
|
3132
3133
|
IconBuilding2: () => IconBuilding2_default,
|
|
@@ -3182,6 +3183,7 @@ __export(src_exports, {
|
|
|
3182
3183
|
IconPercentArrowshapeDown: () => IconPercentArrowshapeDown_default,
|
|
3183
3184
|
IconPerson2Openarms: () => IconPerson2Openarms_default,
|
|
3184
3185
|
IconPersonMagnifyingglass: () => IconPersonMagnifyingglass_default,
|
|
3186
|
+
IconPicture2Stacked: () => IconPicture2Stacked_default,
|
|
3185
3187
|
IconPizzaSlice: () => IconPizzaSlice_default,
|
|
3186
3188
|
IconPlateCovered: () => IconPlateCovered_default,
|
|
3187
3189
|
IconPost: () => IconPost_default,
|
|
@@ -7579,6 +7581,98 @@ var Icon89 = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_ru
|
|
|
7579
7581
|
);
|
|
7580
7582
|
var IconClapperboardStar = (0, import_react89.forwardRef)(Icon89);
|
|
7581
7583
|
var IconClapperboardStar_default = IconClapperboardStar;
|
|
7584
|
+
|
|
7585
|
+
// src/IconBell.tsx
|
|
7586
|
+
var import_react90 = __toESM(require_react(), 1);
|
|
7587
|
+
var import_jsx_runtime90 = __toESM(require_jsx_runtime(), 1);
|
|
7588
|
+
var Icon90 = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
7589
|
+
"svg",
|
|
7590
|
+
{
|
|
7591
|
+
viewBox: "0 0 24 24",
|
|
7592
|
+
fill: "none",
|
|
7593
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7594
|
+
"data-seed-icon": "true",
|
|
7595
|
+
width: size,
|
|
7596
|
+
height: size,
|
|
7597
|
+
ref,
|
|
7598
|
+
...props,
|
|
7599
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)("g", { children: [
|
|
7600
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
7601
|
+
"path",
|
|
7602
|
+
{
|
|
7603
|
+
d: "M14.447 16.5186L14.4831 16.5195C15.4891 16.5571 16.2746 17.4032 16.237 18.4092C16.1525 20.6672 14.6955 22.9814 11.9997 22.9814C9.304 22.9813 7.84786 20.6672 7.76338 18.4092C7.7258 17.4033 8.51043 16.5572 9.51631 16.5195L9.55342 16.5186H14.447Z",
|
|
7604
|
+
fill: "#E68507"
|
|
7605
|
+
}
|
|
7606
|
+
),
|
|
7607
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
7608
|
+
"path",
|
|
7609
|
+
{
|
|
7610
|
+
fillRule: "evenodd",
|
|
7611
|
+
clipRule: "evenodd",
|
|
7612
|
+
d: "M11.9993 1C16.7477 1.00015 20.3713 4.62701 20.3714 9.13379L20.3724 12.8467C20.3724 14.5148 20.7086 15.6402 21.2738 16.6562C21.4182 16.9161 21.4399 17.2268 21.3324 17.5039C21.2247 17.781 20.9991 17.9965 20.7171 18.0908C15.5047 19.8333 8.19026 19.8034 3.26985 18.0859C2.99145 17.9886 2.76931 17.7737 2.66438 17.498C2.55951 17.2223 2.58256 16.9141 2.72591 16.6562C3.29127 15.64 3.62724 14.5147 3.62727 12.8467L3.6263 9.13477C3.62645 4.62803 7.25103 1.00023 11.9993 1Z",
|
|
7613
|
+
fill: "#FFB700"
|
|
7614
|
+
}
|
|
7615
|
+
)
|
|
7616
|
+
] })
|
|
7617
|
+
}
|
|
7618
|
+
);
|
|
7619
|
+
var IconBell = (0, import_react90.forwardRef)(Icon90);
|
|
7620
|
+
var IconBell_default = IconBell;
|
|
7621
|
+
|
|
7622
|
+
// src/IconPicture2Stacked.tsx
|
|
7623
|
+
var import_react91 = __toESM(require_react(), 1);
|
|
7624
|
+
var import_jsx_runtime91 = __toESM(require_jsx_runtime(), 1);
|
|
7625
|
+
var Icon91 = ({ size = 24, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
7626
|
+
"svg",
|
|
7627
|
+
{
|
|
7628
|
+
viewBox: "0 0 24 24",
|
|
7629
|
+
fill: "none",
|
|
7630
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7631
|
+
"data-seed-icon": "true",
|
|
7632
|
+
width: size,
|
|
7633
|
+
height: size,
|
|
7634
|
+
ref,
|
|
7635
|
+
...props,
|
|
7636
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("g", { children: [
|
|
7637
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
7638
|
+
"path",
|
|
7639
|
+
{
|
|
7640
|
+
fillRule: "evenodd",
|
|
7641
|
+
clipRule: "evenodd",
|
|
7642
|
+
d: "M6.86222 4.1589C7.09257 2.79773 8.38285 1.88097 9.74405 2.11105L20.0937 3.86105C21.4547 4.09157 22.3717 5.38267 22.1415 6.74386L20.3915 17.0925C20.1611 18.4535 18.8698 19.3703 17.5087 19.1403L7.16007 17.3903C5.7989 17.1601 4.88234 15.8697 5.11222 14.5085L6.86222 4.1589Z",
|
|
7643
|
+
fill: "#1D7EDE"
|
|
7644
|
+
}
|
|
7645
|
+
),
|
|
7646
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
7647
|
+
"path",
|
|
7648
|
+
{
|
|
7649
|
+
fillRule: "evenodd",
|
|
7650
|
+
clipRule: "evenodd",
|
|
7651
|
+
d: "M15 7C16.1046 7 17 7.89543 17 9V19.5C17 20.8807 15.8807 22 14.5 22H4.5C3.11929 22 2 20.8807 2 19.5V9C2 7.89543 2.89543 7 4 7H15Z",
|
|
7652
|
+
fill: "#3CBAF9"
|
|
7653
|
+
}
|
|
7654
|
+
),
|
|
7655
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("g", { children: [
|
|
7656
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
7657
|
+
"path",
|
|
7658
|
+
{
|
|
7659
|
+
d: "M7.70597 14.3369C8.01885 14.0851 8.47757 14.1036 8.76945 14.3916L10.8134 16.4121L11.5741 15.6729L11.6347 15.6191C11.9504 15.3687 12.4106 15.3921 12.7001 15.6846L13.9716 16.9697C14.2822 17.2839 14.2789 17.7909 13.9648 18.1016C13.6506 18.4118 13.1444 18.4088 12.8339 18.0947L12.12 17.373L11.3671 18.1055C11.0549 18.4091 10.5568 18.4076 10.247 18.1016L8.20597 16.085L6.15812 18.1025C5.84335 18.4125 5.33632 18.4085 5.02629 18.0938C4.71685 17.779 4.72077 17.2728 5.03507 16.9629L7.64543 14.3906L7.70597 14.3369Z",
|
|
7660
|
+
fill: "white"
|
|
7661
|
+
}
|
|
7662
|
+
),
|
|
7663
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
7664
|
+
"path",
|
|
7665
|
+
{
|
|
7666
|
+
d: "M12.2558 10.1748C12.9837 10.1748 13.5739 10.7653 13.5741 11.4932C13.5741 12.2213 12.9839 12.8115 12.2558 12.8115C11.5279 12.8113 10.9374 12.2211 10.9374 11.4932C10.9377 10.7654 11.528 10.175 12.2558 10.1748Z",
|
|
7667
|
+
fill: "white"
|
|
7668
|
+
}
|
|
7669
|
+
)
|
|
7670
|
+
] })
|
|
7671
|
+
] })
|
|
7672
|
+
}
|
|
7673
|
+
);
|
|
7674
|
+
var IconPicture2Stacked = (0, import_react91.forwardRef)(Icon91);
|
|
7675
|
+
var IconPicture2Stacked_default = IconPicture2Stacked;
|
|
7582
7676
|
/*! Bundled license information:
|
|
7583
7677
|
|
|
7584
7678
|
react/cjs/react.production.min.js:
|
package/lib/index.d.ts
CHANGED
|
@@ -87,3 +87,5 @@ export { default as IconChatbubble2 } from "./IconChatbubble2.js";
|
|
|
87
87
|
export { default as IconArrowshapeCircle2 } from "./IconArrowshapeCircle2.js";
|
|
88
88
|
export { default as IconCamcorder } from "./IconCamcorder.js";
|
|
89
89
|
export { default as IconClapperboardStar } from "./IconClapperboardStar.js";
|
|
90
|
+
export { default as IconBell } from "./IconBell.js";
|
|
91
|
+
export { default as IconPicture2Stacked } from "./IconPicture2Stacked.js";
|
package/lib/index.js
CHANGED
|
@@ -87,12 +87,15 @@ import { default as default87 } from "./IconChatbubble2.js";
|
|
|
87
87
|
import { default as default88 } from "./IconArrowshapeCircle2.js";
|
|
88
88
|
import { default as default89 } from "./IconCamcorder.js";
|
|
89
89
|
import { default as default90 } from "./IconClapperboardStar.js";
|
|
90
|
+
import { default as default91 } from "./IconBell.js";
|
|
91
|
+
import { default as default92 } from "./IconPicture2Stacked.js";
|
|
90
92
|
export {
|
|
91
93
|
default38 as IconAnimalFace,
|
|
92
94
|
default11 as IconApple,
|
|
93
95
|
default14 as IconArrowUpRightShoppingbagTilted,
|
|
94
96
|
default88 as IconArrowshapeCircle2,
|
|
95
97
|
default52 as IconAsteriskHorizrectangleCoolwave3,
|
|
98
|
+
default91 as IconBell,
|
|
96
99
|
default18 as IconBook,
|
|
97
100
|
default46 as IconBoxFlap,
|
|
98
101
|
default40 as IconBuilding2,
|
|
@@ -148,6 +151,7 @@ export {
|
|
|
148
151
|
default78 as IconPercentArrowshapeDown,
|
|
149
152
|
default12 as IconPerson2Openarms,
|
|
150
153
|
default5 as IconPersonMagnifyingglass,
|
|
154
|
+
default92 as IconPicture2Stacked,
|
|
151
155
|
default50 as IconPizzaSlice,
|
|
152
156
|
default43 as IconPlateCovered,
|
|
153
157
|
default54 as IconPost,
|