@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
package/LICENSE
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @daangn/react-multicolor-icon
|
|
2
|
+
|
|
3
|
+
### Install
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
# React
|
|
7
|
+
npm install @daangn/react-multicolor-icon
|
|
8
|
+
yarn add @daangn/react-multicolor-icon
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
### Usage
|
|
12
|
+
|
|
13
|
+
```jsx
|
|
14
|
+
import { IconName1, IconName2 } from "@daangn/react-multicolor-icon";
|
|
15
|
+
|
|
16
|
+
// SVG props 사용 가능
|
|
17
|
+
<IconName1 size={20} />;
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
프로젝트에서 사용하고 있는 번들러가 tree-shaking을 지원한다면, 사용하지 않는 아이콘은 번들에 포함되지 않습니다.
|
|
21
|
+
그게 아니라면 `Deep Import`를 사용하여 필요한 아이콘만 가져오는 것을 권장합니다.
|
|
22
|
+
|
|
23
|
+
```jsx
|
|
24
|
+
import IconName1 from "@daangn/react-multicolor-icon/IconName1";
|
|
25
|
+
```
|
|
@@ -0,0 +1,79 @@
|
|
|
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/IconAnimalFace.tsx
|
|
20
|
+
var IconAnimalFace_exports = {};
|
|
21
|
+
__export(IconAnimalFace_exports, {
|
|
22
|
+
default: () => IconAnimalFace_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(IconAnimalFace_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: "M21.15 7.9999L20.16 2.3699C20.09 1.9699 19.8 1.6499 19.41 1.5499C19.02 1.4399 18.61 1.5799 18.35 1.8899L14.95 5.9499C12.85 5.6999 11.18 5.6999 9.08 5.9499L5.66 1.8899C5.4 1.5799 4.99 1.4499 4.6 1.5499C4.21 1.6499 3.92 1.9699 3.85 2.3699L1.3 16.8199C1.14 17.7499 1.38 18.7299 2.03 19.4199C4.37 21.9199 8.01 23.3799 12 23.3799C15.99 23.3799 19.63 21.9199 21.97 19.4199C22.62 18.7299 22.86 17.7499 22.7 16.8199L21.14 7.9999H21.15Z",
|
|
45
|
+
fill: "#FFCB64"
|
|
46
|
+
}
|
|
47
|
+
),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
49
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
50
|
+
"path",
|
|
51
|
+
{
|
|
52
|
+
fillRule: "evenodd",
|
|
53
|
+
clipRule: "evenodd",
|
|
54
|
+
d: "M8.5 11.5C9.05228 11.5 9.5 11.9477 9.5 12.5V13.5C9.5 14.0523 9.05228 14.5 8.5 14.5C7.94772 14.5 7.5 14.0523 7.5 13.5V12.5C7.5 11.9477 7.94772 11.5 8.5 11.5Z",
|
|
55
|
+
fill: "#815A4F"
|
|
56
|
+
}
|
|
57
|
+
),
|
|
58
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
59
|
+
"path",
|
|
60
|
+
{
|
|
61
|
+
fillRule: "evenodd",
|
|
62
|
+
clipRule: "evenodd",
|
|
63
|
+
d: "M15.5 11.5C16.0523 11.5 16.5 11.9477 16.5 12.5V13.5C16.5 14.0523 16.0523 14.5 15.5 14.5C14.9477 14.5 14.5 14.0523 14.5 13.5V12.5C14.5 11.9477 14.9477 11.5 15.5 11.5Z",
|
|
64
|
+
fill: "#815A4F"
|
|
65
|
+
}
|
|
66
|
+
)
|
|
67
|
+
] }),
|
|
68
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
69
|
+
"path",
|
|
70
|
+
{
|
|
71
|
+
d: "M10.25 16.6101C10.25 16.0601 10.7 15.6101 11.25 15.6101H12.75C13.3 15.6101 13.75 16.0601 13.75 16.6101C13.75 17.1601 13.3 17.6101 12.75 17.6101H11.25C10.7 17.6101 10.25 17.1601 10.25 16.6101Z",
|
|
72
|
+
fill: "#E68507"
|
|
73
|
+
}
|
|
74
|
+
)
|
|
75
|
+
] }) })
|
|
76
|
+
}
|
|
77
|
+
);
|
|
78
|
+
var IconAnimalFace = (0, import_react.forwardRef)(Icon);
|
|
79
|
+
var IconAnimalFace_default = IconAnimalFace;
|
|
@@ -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 반려동물,동물,강아지,고양이,얼굴,animal,cat,dog,face
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconAnimalFace: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconAnimalFace;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
// src/IconAnimalFace.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: "M21.15 7.9999L20.16 2.3699C20.09 1.9699 19.8 1.6499 19.41 1.5499C19.02 1.4399 18.61 1.5799 18.35 1.8899L14.95 5.9499C12.85 5.6999 11.18 5.6999 9.08 5.9499L5.66 1.8899C5.4 1.5799 4.99 1.4499 4.6 1.5499C4.21 1.6499 3.92 1.9699 3.85 2.3699L1.3 16.8199C1.14 17.7499 1.38 18.7299 2.03 19.4199C4.37 21.9199 8.01 23.3799 12 23.3799C15.99 23.3799 19.63 21.9199 21.97 19.4199C22.62 18.7299 22.86 17.7499 22.7 16.8199L21.14 7.9999H21.15Z",
|
|
22
|
+
fill: "#FFCB64"
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
26
|
+
/* @__PURE__ */ jsx(
|
|
27
|
+
"path",
|
|
28
|
+
{
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
clipRule: "evenodd",
|
|
31
|
+
d: "M8.5 11.5C9.05228 11.5 9.5 11.9477 9.5 12.5V13.5C9.5 14.0523 9.05228 14.5 8.5 14.5C7.94772 14.5 7.5 14.0523 7.5 13.5V12.5C7.5 11.9477 7.94772 11.5 8.5 11.5Z",
|
|
32
|
+
fill: "#815A4F"
|
|
33
|
+
}
|
|
34
|
+
),
|
|
35
|
+
/* @__PURE__ */ jsx(
|
|
36
|
+
"path",
|
|
37
|
+
{
|
|
38
|
+
fillRule: "evenodd",
|
|
39
|
+
clipRule: "evenodd",
|
|
40
|
+
d: "M15.5 11.5C16.0523 11.5 16.5 11.9477 16.5 12.5V13.5C16.5 14.0523 16.0523 14.5 15.5 14.5C14.9477 14.5 14.5 14.0523 14.5 13.5V12.5C14.5 11.9477 14.9477 11.5 15.5 11.5Z",
|
|
41
|
+
fill: "#815A4F"
|
|
42
|
+
}
|
|
43
|
+
)
|
|
44
|
+
] }),
|
|
45
|
+
/* @__PURE__ */ jsx(
|
|
46
|
+
"path",
|
|
47
|
+
{
|
|
48
|
+
d: "M10.25 16.6101C10.25 16.0601 10.7 15.6101 11.25 15.6101H12.75C13.3 15.6101 13.75 16.0601 13.75 16.6101C13.75 17.1601 13.3 17.6101 12.75 17.6101H11.25C10.7 17.6101 10.25 17.1601 10.25 16.6101Z",
|
|
49
|
+
fill: "#E68507"
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
] }) })
|
|
53
|
+
}
|
|
54
|
+
);
|
|
55
|
+
var IconAnimalFace = forwardRef(Icon);
|
|
56
|
+
var IconAnimalFace_default = IconAnimalFace;
|
|
57
|
+
export {
|
|
58
|
+
IconAnimalFace_default as default
|
|
59
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
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/IconApple.tsx
|
|
20
|
+
var IconApple_exports = {};
|
|
21
|
+
__export(IconApple_exports, {
|
|
22
|
+
default: () => IconApple_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(IconApple_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: "M16.52 1.79999C16.8 1.79999 17.04 2.00999 17.03 2.28999C16.99 3.13999 16.66 3.94999 16.13 4.62999C14.93 6.15999 13.24 6.24999 12.43 6.18999C12.17 6.16999 11.95 5.95999 11.96 5.69999C11.99 4.83999 12.33 4.00999 12.86 3.30999C13.85 1.99999 15.65 1.80999 16.52 1.79999Z",
|
|
45
|
+
fill: "#25A18E"
|
|
46
|
+
}
|
|
47
|
+
),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
49
|
+
"path",
|
|
50
|
+
{
|
|
51
|
+
d: "M9.59998 3.28998C10.59 4.05998 12 5.68998 12 8.70998",
|
|
52
|
+
stroke: "#556175",
|
|
53
|
+
strokeWidth: 2.4,
|
|
54
|
+
strokeMiterlimit: 10,
|
|
55
|
+
strokeLinecap: "round"
|
|
56
|
+
}
|
|
57
|
+
),
|
|
58
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
59
|
+
"path",
|
|
60
|
+
{
|
|
61
|
+
d: "M22.06 10.16C21.45 8.36001 20.11 6.90001 18.26 6.37001C16.04 5.73001 13.69 6.45001 12 8.04001C10.31 6.44001 7.96001 5.73001 5.74001 6.37001C3.89001 6.90001 2.55001 8.37001 1.94001 10.16C1.19001 12.36 1.46001 14.8 2.29001 16.93C2.85001 18.37 3.75001 19.65 4.83001 20.74C7.18001 23.1 10.51 22.95 12 21.45C13.49 22.96 16.82 23.1 19.17 20.74C20.26 19.65 21.15 18.37 21.71 16.93C22.55 14.8 22.81 12.36 22.06 10.16Z",
|
|
62
|
+
fill: "#2CCA6F"
|
|
63
|
+
}
|
|
64
|
+
),
|
|
65
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
66
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
67
|
+
"path",
|
|
68
|
+
{
|
|
69
|
+
d: "M10.44 14.1799C10.44 14.8979 9.85794 15.4799 9.13997 15.4799C8.422 15.4799 7.83997 14.8979 7.83997 14.1799C7.83997 13.4619 8.422 12.8799 9.13997 12.8799C9.85794 12.8799 10.44 13.4619 10.44 14.1799Z",
|
|
70
|
+
fill: "white"
|
|
71
|
+
}
|
|
72
|
+
),
|
|
73
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
74
|
+
"path",
|
|
75
|
+
{
|
|
76
|
+
d: "M16.16 14.1799C16.16 14.8979 15.5779 15.4799 14.86 15.4799C14.142 15.4799 13.56 14.8979 13.56 14.1799C13.56 13.4619 14.142 12.8799 14.86 12.8799C15.5779 12.8799 16.16 13.4619 16.16 14.1799Z",
|
|
77
|
+
fill: "white"
|
|
78
|
+
}
|
|
79
|
+
)
|
|
80
|
+
] })
|
|
81
|
+
] })
|
|
82
|
+
}
|
|
83
|
+
);
|
|
84
|
+
var IconApple = (0, import_react.forwardRef)(Icon);
|
|
85
|
+
var IconApple_default = IconApple;
|
|
@@ -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 사과,과일,농수산물,apple,fruit,tag:service
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconApple: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconApple;
|
package/lib/IconApple.js
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
// src/IconApple.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: "M16.52 1.79999C16.8 1.79999 17.04 2.00999 17.03 2.28999C16.99 3.13999 16.66 3.94999 16.13 4.62999C14.93 6.15999 13.24 6.24999 12.43 6.18999C12.17 6.16999 11.95 5.95999 11.96 5.69999C11.99 4.83999 12.33 4.00999 12.86 3.30999C13.85 1.99999 15.65 1.80999 16.52 1.79999Z",
|
|
22
|
+
fill: "#25A18E"
|
|
23
|
+
}
|
|
24
|
+
),
|
|
25
|
+
/* @__PURE__ */ jsx(
|
|
26
|
+
"path",
|
|
27
|
+
{
|
|
28
|
+
d: "M9.59998 3.28998C10.59 4.05998 12 5.68998 12 8.70998",
|
|
29
|
+
stroke: "#556175",
|
|
30
|
+
strokeWidth: 2.4,
|
|
31
|
+
strokeMiterlimit: 10,
|
|
32
|
+
strokeLinecap: "round"
|
|
33
|
+
}
|
|
34
|
+
),
|
|
35
|
+
/* @__PURE__ */ jsx(
|
|
36
|
+
"path",
|
|
37
|
+
{
|
|
38
|
+
d: "M22.06 10.16C21.45 8.36001 20.11 6.90001 18.26 6.37001C16.04 5.73001 13.69 6.45001 12 8.04001C10.31 6.44001 7.96001 5.73001 5.74001 6.37001C3.89001 6.90001 2.55001 8.37001 1.94001 10.16C1.19001 12.36 1.46001 14.8 2.29001 16.93C2.85001 18.37 3.75001 19.65 4.83001 20.74C7.18001 23.1 10.51 22.95 12 21.45C13.49 22.96 16.82 23.1 19.17 20.74C20.26 19.65 21.15 18.37 21.71 16.93C22.55 14.8 22.81 12.36 22.06 10.16Z",
|
|
39
|
+
fill: "#2CCA6F"
|
|
40
|
+
}
|
|
41
|
+
),
|
|
42
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
43
|
+
/* @__PURE__ */ jsx(
|
|
44
|
+
"path",
|
|
45
|
+
{
|
|
46
|
+
d: "M10.44 14.1799C10.44 14.8979 9.85794 15.4799 9.13997 15.4799C8.422 15.4799 7.83997 14.8979 7.83997 14.1799C7.83997 13.4619 8.422 12.8799 9.13997 12.8799C9.85794 12.8799 10.44 13.4619 10.44 14.1799Z",
|
|
47
|
+
fill: "white"
|
|
48
|
+
}
|
|
49
|
+
),
|
|
50
|
+
/* @__PURE__ */ jsx(
|
|
51
|
+
"path",
|
|
52
|
+
{
|
|
53
|
+
d: "M16.16 14.1799C16.16 14.8979 15.5779 15.4799 14.86 15.4799C14.142 15.4799 13.56 14.8979 13.56 14.1799C13.56 13.4619 14.142 12.8799 14.86 12.8799C15.5779 12.8799 16.16 13.4619 16.16 14.1799Z",
|
|
54
|
+
fill: "white"
|
|
55
|
+
}
|
|
56
|
+
)
|
|
57
|
+
] })
|
|
58
|
+
] })
|
|
59
|
+
}
|
|
60
|
+
);
|
|
61
|
+
var IconApple = forwardRef(Icon);
|
|
62
|
+
var IconApple_default = IconApple;
|
|
63
|
+
export {
|
|
64
|
+
IconApple_default as default
|
|
65
|
+
};
|
|
@@ -0,0 +1,93 @@
|
|
|
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/IconBuilding2.tsx
|
|
20
|
+
var IconBuilding2_exports = {};
|
|
21
|
+
__export(IconBuilding2_exports, {
|
|
22
|
+
default: () => IconBuilding2_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(IconBuilding2_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: "M16 6.75C13.81 6.88 12.26 7.44 11.35 7.87C10.42 8.32 10 9.25 10 10.12V19.92C10 21.47 11.25 22.72 12.8 22.72H19.2C20.75 22.72 22 21.47 22 19.92V10.12C22 9.25 21.58 8.32 20.65 7.87C19.74 7.43 18.19 6.88 16 6.75Z",
|
|
47
|
+
fill: "#126BE0"
|
|
48
|
+
}
|
|
49
|
+
),
|
|
50
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51
|
+
"path",
|
|
52
|
+
{
|
|
53
|
+
fillRule: "evenodd",
|
|
54
|
+
clipRule: "evenodd",
|
|
55
|
+
d: "M14.24 2.37997C13.18 2.06997 11.43 1.71997 9 1.71997C6.57 1.71997 4.82 2.06997 3.76 2.37997C2.61 2.71997 2 3.77997 2 4.82997V19.92C2 21.47 3.25 22.72 4.8 22.72H13.2C14.75 22.72 16 21.47 16 19.92V4.82997C16 3.77997 15.39 2.71997 14.24 2.37997Z",
|
|
56
|
+
fill: "#55A7FF"
|
|
57
|
+
}
|
|
58
|
+
),
|
|
59
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
60
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
61
|
+
"path",
|
|
62
|
+
{
|
|
63
|
+
d: "M8 6.5C8 5.95 7.55 5.5 7 5.5C6.45 5.5 6 5.95 6 6.5V8C6 8.55 6.45 9 7 9C7.55 9 8 8.55 8 8V6.5Z",
|
|
64
|
+
fill: "white"
|
|
65
|
+
}
|
|
66
|
+
),
|
|
67
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
68
|
+
"path",
|
|
69
|
+
{
|
|
70
|
+
d: "M7 10.8999C7.55 10.8999 8 11.3499 8 11.8999V13.3999C8 13.9499 7.55 14.3999 7 14.3999C6.45 14.3999 6 13.9499 6 13.3999V11.8999C6 11.3499 6.45 10.8999 7 10.8999Z",
|
|
71
|
+
fill: "white"
|
|
72
|
+
}
|
|
73
|
+
),
|
|
74
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
75
|
+
"path",
|
|
76
|
+
{
|
|
77
|
+
d: "M11 5.5C11.55 5.5 12 5.95 12 6.5V8C12 8.55 11.55 9 11 9C10.45 9 10 8.55 10 8V6.5C10 5.95 10.45 5.5 11 5.5Z",
|
|
78
|
+
fill: "white"
|
|
79
|
+
}
|
|
80
|
+
),
|
|
81
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
82
|
+
"path",
|
|
83
|
+
{
|
|
84
|
+
d: "M11 10.8999C11.55 10.8999 12 11.3499 12 11.8999V13.3999C12 13.9499 11.55 14.3999 11 14.3999C10.45 14.3999 10 13.9499 10 13.3999V11.8999C10 11.3499 10.45 10.8999 11 10.8999Z",
|
|
85
|
+
fill: "white"
|
|
86
|
+
}
|
|
87
|
+
)
|
|
88
|
+
] })
|
|
89
|
+
] })
|
|
90
|
+
}
|
|
91
|
+
);
|
|
92
|
+
var IconBuilding2 = (0, import_react.forwardRef)(Icon);
|
|
93
|
+
var IconBuilding2_default = IconBuilding2;
|
|
@@ -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 단지,커뮤니티,모임,building,community,건물,아파트
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconBuilding2: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconBuilding2;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
// src/IconBuilding2.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: "M16 6.75C13.81 6.88 12.26 7.44 11.35 7.87C10.42 8.32 10 9.25 10 10.12V19.92C10 21.47 11.25 22.72 12.8 22.72H19.2C20.75 22.72 22 21.47 22 19.92V10.12C22 9.25 21.58 8.32 20.65 7.87C19.74 7.43 18.19 6.88 16 6.75Z",
|
|
24
|
+
fill: "#126BE0"
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ jsx(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fillRule: "evenodd",
|
|
31
|
+
clipRule: "evenodd",
|
|
32
|
+
d: "M14.24 2.37997C13.18 2.06997 11.43 1.71997 9 1.71997C6.57 1.71997 4.82 2.06997 3.76 2.37997C2.61 2.71997 2 3.77997 2 4.82997V19.92C2 21.47 3.25 22.72 4.8 22.72H13.2C14.75 22.72 16 21.47 16 19.92V4.82997C16 3.77997 15.39 2.71997 14.24 2.37997Z",
|
|
33
|
+
fill: "#55A7FF"
|
|
34
|
+
}
|
|
35
|
+
),
|
|
36
|
+
/* @__PURE__ */ jsxs("g", { children: [
|
|
37
|
+
/* @__PURE__ */ jsx(
|
|
38
|
+
"path",
|
|
39
|
+
{
|
|
40
|
+
d: "M8 6.5C8 5.95 7.55 5.5 7 5.5C6.45 5.5 6 5.95 6 6.5V8C6 8.55 6.45 9 7 9C7.55 9 8 8.55 8 8V6.5Z",
|
|
41
|
+
fill: "white"
|
|
42
|
+
}
|
|
43
|
+
),
|
|
44
|
+
/* @__PURE__ */ jsx(
|
|
45
|
+
"path",
|
|
46
|
+
{
|
|
47
|
+
d: "M7 10.8999C7.55 10.8999 8 11.3499 8 11.8999V13.3999C8 13.9499 7.55 14.3999 7 14.3999C6.45 14.3999 6 13.9499 6 13.3999V11.8999C6 11.3499 6.45 10.8999 7 10.8999Z",
|
|
48
|
+
fill: "white"
|
|
49
|
+
}
|
|
50
|
+
),
|
|
51
|
+
/* @__PURE__ */ jsx(
|
|
52
|
+
"path",
|
|
53
|
+
{
|
|
54
|
+
d: "M11 5.5C11.55 5.5 12 5.95 12 6.5V8C12 8.55 11.55 9 11 9C10.45 9 10 8.55 10 8V6.5C10 5.95 10.45 5.5 11 5.5Z",
|
|
55
|
+
fill: "white"
|
|
56
|
+
}
|
|
57
|
+
),
|
|
58
|
+
/* @__PURE__ */ jsx(
|
|
59
|
+
"path",
|
|
60
|
+
{
|
|
61
|
+
d: "M11 10.8999C11.55 10.8999 12 11.3499 12 11.8999V13.3999C12 13.9499 11.55 14.3999 11 14.3999C10.45 14.3999 10 13.9499 10 13.3999V11.8999C10 11.3499 10.45 10.8999 11 10.8999Z",
|
|
62
|
+
fill: "white"
|
|
63
|
+
}
|
|
64
|
+
)
|
|
65
|
+
] })
|
|
66
|
+
] })
|
|
67
|
+
}
|
|
68
|
+
);
|
|
69
|
+
var IconBuilding2 = forwardRef(Icon);
|
|
70
|
+
var IconBuilding2_default = IconBuilding2;
|
|
71
|
+
export {
|
|
72
|
+
IconBuilding2_default as default
|
|
73
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
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/IconCarFrontside.tsx
|
|
20
|
+
var IconCarFrontside_exports = {};
|
|
21
|
+
__export(IconCarFrontside_exports, {
|
|
22
|
+
default: () => IconCarFrontside_default
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(IconCarFrontside_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: "M1.59759 8.09C0.968323 7.87337 0.282588 8.20788 0.065956 8.83714C-0.150676 9.46641 0.183829 10.1521 0.813094 10.3688C1.45735 10.5906 2.09511 10.7785 2.70445 10.9511C3.34476 11.1325 4.0109 10.7605 4.19232 10.1202C4.37374 9.47991 4.00174 8.81377 3.36143 8.63235C2.76576 8.46358 2.17843 8.28997 1.59759 8.09Z",
|
|
46
|
+
fill: "#126BE0"
|
|
47
|
+
}
|
|
48
|
+
),
|
|
49
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
50
|
+
"path",
|
|
51
|
+
{
|
|
52
|
+
d: "M23.9397 8.85396C24.147 9.48635 23.8025 10.1671 23.1701 10.3744C22.551 10.5774 21.9309 10.7739 21.3056 10.9511C20.6653 11.1325 19.9991 10.7605 19.8177 10.1202C19.6363 9.47991 20.0083 8.81377 20.6486 8.63235C21.2283 8.4681 21.8132 8.28305 22.4192 8.08435C23.0516 7.87701 23.7324 8.22158 23.9397 8.85396Z",
|
|
53
|
+
fill: "#126BE0"
|
|
54
|
+
}
|
|
55
|
+
),
|
|
56
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
57
|
+
"path",
|
|
58
|
+
{
|
|
59
|
+
d: "M2.68287 16.8355C2.66853 16.2811 2.20747 15.8433 1.65307 15.8576C1.09866 15.8719 0.66085 16.333 0.675188 16.8874C0.707223 18.1261 0.878102 19.3401 1.18134 20.4664C1.28136 20.8379 1.58486 21.1196 1.96277 21.1917L6.12006 21.985C6.41405 22.0411 6.71774 21.9632 6.94835 21.7724C7.17896 21.5816 7.31246 21.2979 7.31246 20.9986V17.8757C7.31246 17.3211 6.86288 16.8715 6.30829 16.8715C5.82748 16.8715 5.42559 17.2094 5.32717 17.6607L2.6914 17.0832C2.68786 17.0009 2.68501 16.9183 2.68287 16.8355Z",
|
|
60
|
+
fill: "#126BE0"
|
|
61
|
+
}
|
|
62
|
+
),
|
|
63
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
64
|
+
"path",
|
|
65
|
+
{
|
|
66
|
+
d: "M21.3216 17.0832C21.3251 17.0009 21.3279 16.9183 21.3301 16.8355C21.3444 16.2811 21.8055 15.8433 22.3599 15.8576C22.9143 15.8719 23.3521 16.333 23.3378 16.8874C23.3057 18.1261 23.1349 19.3401 22.8316 20.4664C22.7316 20.8379 22.4281 21.1196 22.0502 21.1917L17.8929 21.985C17.5989 22.0411 17.2952 21.9632 17.0646 21.7724C16.834 21.5816 16.7005 21.2979 16.7005 20.9986V17.8757C16.7005 17.3211 17.1501 16.8715 17.7047 16.8715C18.1855 16.8715 18.5874 17.2094 18.6858 17.6607L21.3216 17.0832Z",
|
|
67
|
+
fill: "#126BE0"
|
|
68
|
+
}
|
|
69
|
+
)
|
|
70
|
+
] }),
|
|
71
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
72
|
+
"path",
|
|
73
|
+
{
|
|
74
|
+
fillRule: "evenodd",
|
|
75
|
+
clipRule: "evenodd",
|
|
76
|
+
d: "M2.01535 9.60315C2.02977 9.56388 2.04637 9.52498 2.06519 9.48659L4.54039 4.43914L4.5413 4.43728C5.09673 3.29738 6.25013 2.5957 7.49862 2.5957H16.3862C17.6441 2.5957 18.7774 3.3049 19.3386 4.4274L19.3415 4.43321L21.5921 8.99582L21.9141 9.78794C22.575 11.7837 23.4131 14.2718 23.3392 16.8895C23.3271 17.3177 23.0448 17.691 22.6361 17.8193L22.3354 16.8612C22.6361 17.8193 22.6361 17.8193 22.6361 17.8193L22.6301 17.8212L22.6173 17.8251L22.5719 17.839C22.5328 17.8508 22.4763 17.8675 22.4034 17.8886C22.2576 17.9306 22.0458 17.9898 21.775 18.0604C21.2336 18.2015 20.4555 18.3884 19.4972 18.5749C17.5836 18.9474 14.9362 19.3214 12.0125 19.3214C9.08885 19.3214 6.43659 18.9474 4.51827 18.575C3.55757 18.3885 2.77704 18.2017 2.23389 18.0606C1.96222 17.9901 1.74967 17.9309 1.60336 17.8889C1.53019 17.8678 1.47357 17.8511 1.43438 17.8393L1.38877 17.8255L1.37597 17.8215L1.37081 17.8199L1.37107 17.8171C1.37027 17.8198 1.37081 17.8199 1.37081 17.8199C0.902751 17.6737 0.617034 17.2161 0.67171 16.7462C0.612678 14.275 1.07643 11.6809 2.01535 9.60315ZM6.70757 5.49345C6.85183 5.1969 7.15483 5.00573 7.49862 5.00573H16.3862C16.7204 5.00573 17.024 5.18924 17.1818 5.50287L17.183 5.50519L19.0335 9.25661C16.6734 9.80368 14.3354 10.0849 12.0025 10.093C9.64258 10.0848 7.27075 9.79514 4.87442 9.23164L6.70591 5.49686L6.70757 5.49345Z",
|
|
77
|
+
fill: "#318EFF"
|
|
78
|
+
}
|
|
79
|
+
),
|
|
80
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", { children: [
|
|
81
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
82
|
+
"path",
|
|
83
|
+
{
|
|
84
|
+
d: "M18.9881 15.0397C19.5346 14.9455 19.9013 14.426 19.807 13.8795C19.7128 13.333 19.1934 12.9663 18.6468 13.0605L17.1908 13.3116C16.6443 13.4058 16.2776 13.9253 16.3718 14.4718C16.4661 15.0183 16.9855 15.385 17.532 15.2907L18.9881 15.0397Z",
|
|
85
|
+
fill: "white"
|
|
86
|
+
}
|
|
87
|
+
),
|
|
88
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
89
|
+
"path",
|
|
90
|
+
{
|
|
91
|
+
d: "M5.34073 13.0605C4.7942 12.9663 4.27476 13.333 4.18054 13.8795C4.08631 14.426 4.45297 14.9455 4.9995 15.0397L6.45555 15.2907C7.00208 15.385 7.52152 15.0183 7.61575 14.4718C7.70998 13.9253 7.34331 13.4058 6.79679 13.3116L5.34073 13.0605Z",
|
|
92
|
+
fill: "white"
|
|
93
|
+
}
|
|
94
|
+
)
|
|
95
|
+
] })
|
|
96
|
+
] })
|
|
97
|
+
}
|
|
98
|
+
);
|
|
99
|
+
var IconCarFrontside = (0, import_react.forwardRef)(Icon);
|
|
100
|
+
var IconCarFrontside_default = IconCarFrontside;
|
|
@@ -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 automobile,car,cars,transportation,vehicle,vertical,버티컬,운송,자동차,중고차,차,차량,service:중고차,tag:service
|
|
8
|
+
* @preview 
|
|
9
|
+
*/
|
|
10
|
+
declare const IconCarFrontside: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
11
|
+
export default IconCarFrontside;
|