@karrotmarket/react-multicolor-icon 1.20.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/IconSquareline2Vertical.cjs +76 -0
- package/lib/IconSquareline2Vertical.d.ts +11 -0
- package/lib/IconSquareline2Vertical.js +55 -0
- package/lib/index.cjs +700 -563
- package/lib/index.d.ts +3 -0
- package/lib/index.js +126 -120
- 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
|
+
};
|
|
@@ -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
|
+
};
|