@teamturing/icons 1.13.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/dist/Infinite.d.ts +3 -0
- package/dist/PointInCircleColor.d.ts +3 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +36 -0
- package/esm/Infinite.js +15 -0
- package/esm/PointInCircleColor.js +27 -0
- package/esm/index.js +2 -0
- package/package.json +2 -2
- package/svg/infinite.svg +5 -0
- package/svg/point_in_circle_color.svg +11 -0
package/dist/index.d.ts
CHANGED
|
@@ -79,6 +79,7 @@ export { default as GunColorIcon } from './GunColor';
|
|
|
79
79
|
export { default as HairIcon } from './Hair';
|
|
80
80
|
export { default as HeadphoneIcon } from './Headphone';
|
|
81
81
|
export { default as HeartIcon } from './Heart';
|
|
82
|
+
export { default as InfiniteIcon } from './Infinite';
|
|
82
83
|
export { default as InfoInCircleIcon } from './InfoInCircle';
|
|
83
84
|
export { default as InstagramIcon } from './Instagram';
|
|
84
85
|
export { default as KakaoColorIcon } from './KakaoColor';
|
|
@@ -126,6 +127,7 @@ export { default as PlugColorIcon } from './PlugColor';
|
|
|
126
127
|
export { default as PlusIcon } from './Plus';
|
|
127
128
|
export { default as PlusInCircleIcon } from './PlusInCircle';
|
|
128
129
|
export { default as PointInCircleIcon } from './PointInCircle';
|
|
130
|
+
export { default as PointInCircleColorIcon } from './PointInCircleColor';
|
|
129
131
|
export { default as PresentIcon } from './Present';
|
|
130
132
|
export { default as PresentColorIcon } from './PresentColor';
|
|
131
133
|
export { default as ProblemIcon } from './Problem';
|
package/dist/index.js
CHANGED
|
@@ -1251,6 +1251,17 @@ const SvgHeart = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
1251
1251
|
clipRule: "evenodd"
|
|
1252
1252
|
}));
|
|
1253
1253
|
|
|
1254
|
+
const SvgInfinite = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1255
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1256
|
+
width: "1em",
|
|
1257
|
+
height: "1em",
|
|
1258
|
+
fill: "none",
|
|
1259
|
+
viewBox: "0 0 20 20"
|
|
1260
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
1261
|
+
fill: "#7A828D",
|
|
1262
|
+
d: "M17.802 6.972a4.393 4.393 0 0 0-3.123-1.136c-2.008.066-3.247 1.335-4.683 2.804l-.008.007-.008-.007C8.545 7.17 7.313 5.902 5.297 5.836a4.374 4.374 0 0 0-3.099 1.136A4.085 4.085 0 0 0 .833 9.997a4.05 4.05 0 0 0 1.35 3.033 4.414 4.414 0 0 0 2.973 1.137h.157C7.32 14.1 8.56 12.83 9.996 11.363v-.008l.008.008c1.435 1.468 2.667 2.737 4.683 2.804h.157a4.379 4.379 0 0 0 2.973-1.137 4.05 4.05 0 0 0 1.35-3.033 4.085 4.085 0 0 0-1.365-3.025Zm-12.56 5.35c-.635.022-1.24-.2-1.694-.613a2.31 2.31 0 0 1 .008-3.416 2.388 2.388 0 0 1 1.6-.62h.086c1.138.037 1.922.782 3.31 2.206.032.037.071.074.103.104l-.008.014.008.008c-.032.037-.071.074-.102.103-1.389 1.432-2.173 2.177-3.311 2.214Zm11.21-.613a2.392 2.392 0 0 1-1.694.613c-1.138-.037-1.922-.782-3.31-2.206-.032-.037-.071-.074-.103-.104l.008-.015h-.008c.032-.036.07-.073.102-.103 1.389-1.424 2.173-2.17 3.31-2.206.62-.008 1.225.2 1.687.62.495.442.761 1.048.761 1.704 0 .65-.266 1.255-.753 1.697Z"
|
|
1263
|
+
}));
|
|
1264
|
+
|
|
1254
1265
|
const SvgInfoInCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1255
1266
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1256
1267
|
width: "1em",
|
|
@@ -2049,6 +2060,29 @@ const SvgPointInCircle = props => /*#__PURE__*/React__namespace.createElement("s
|
|
|
2049
2060
|
clipRule: "evenodd"
|
|
2050
2061
|
}));
|
|
2051
2062
|
|
|
2063
|
+
const SvgPointInCircleColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2064
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2065
|
+
width: "1em",
|
|
2066
|
+
height: "1em",
|
|
2067
|
+
fill: "none",
|
|
2068
|
+
viewBox: "0 0 24 24"
|
|
2069
|
+
}, props), /*#__PURE__*/React__namespace.createElement("g", {
|
|
2070
|
+
fillRule: "evenodd",
|
|
2071
|
+
clipPath: "url(#point_in_circle_color_svg__a)",
|
|
2072
|
+
clipRule: "evenodd"
|
|
2073
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
2074
|
+
fill: "#fff",
|
|
2075
|
+
d: "M13.357 14.146h-2.375v2.715a1.02 1.02 0 0 1-2.037 0V6.678h4.412a3.737 3.737 0 0 1 3.733 3.735 3.737 3.737 0 0 1-3.733 3.733Zm-2.375-5.431h2.375a1.698 1.698 0 0 1 0 3.394h-2.375V8.715Z"
|
|
2076
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2077
|
+
fill: "#C6B5F6",
|
|
2078
|
+
d: "M10.982 14.146h2.375a3.737 3.737 0 0 0 3.733-3.733 3.737 3.737 0 0 0-3.733-3.735H8.945v10.183a1.02 1.02 0 0 0 2.037 0v-2.715ZM.8 12C.8 5.815 5.814.8 12 .8 18.185.8 23.2 5.815 23.2 12c0 6.186-5.015 11.2-11.2 11.2C5.814 23.2.8 18.186.8 12Zm10.182-3.285h2.375a1.698 1.698 0 0 1 0 3.394h-2.375V8.715Z"
|
|
2079
|
+
})), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
2080
|
+
id: "point_in_circle_color_svg__a"
|
|
2081
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
2082
|
+
fill: "#fff",
|
|
2083
|
+
d: "M0 0h24v24H0z"
|
|
2084
|
+
}))));
|
|
2085
|
+
|
|
2052
2086
|
const SvgPresent = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2053
2087
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2054
2088
|
width: "1em",
|
|
@@ -3049,6 +3083,7 @@ exports.GunIcon = SvgGun;
|
|
|
3049
3083
|
exports.HairIcon = SvgHair;
|
|
3050
3084
|
exports.HeadphoneIcon = SvgHeadphone;
|
|
3051
3085
|
exports.HeartIcon = SvgHeart;
|
|
3086
|
+
exports.InfiniteIcon = SvgInfinite;
|
|
3052
3087
|
exports.InfoInCircleIcon = SvgInfoInCircle;
|
|
3053
3088
|
exports.InstagramIcon = SvgInstagram;
|
|
3054
3089
|
exports.KakaoColorIcon = SvgKakaoColor;
|
|
@@ -3095,6 +3130,7 @@ exports.PlugColorIcon = SvgPlugColor;
|
|
|
3095
3130
|
exports.PlugIcon = SvgPlug;
|
|
3096
3131
|
exports.PlusIcon = SvgPlus;
|
|
3097
3132
|
exports.PlusInCircleIcon = SvgPlusInCircle;
|
|
3133
|
+
exports.PointInCircleColorIcon = SvgPointInCircleColor;
|
|
3098
3134
|
exports.PointInCircleIcon = SvgPointInCircle;
|
|
3099
3135
|
exports.PresentColorIcon = SvgPresentColor;
|
|
3100
3136
|
exports.PresentIcon = SvgPresent;
|
package/esm/Infinite.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgInfinite = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 20 20"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#7A828D",
|
|
12
|
+
d: "M17.802 6.972a4.393 4.393 0 0 0-3.123-1.136c-2.008.066-3.247 1.335-4.683 2.804l-.008.007-.008-.007C8.545 7.17 7.313 5.902 5.297 5.836a4.374 4.374 0 0 0-3.099 1.136A4.085 4.085 0 0 0 .833 9.997a4.05 4.05 0 0 0 1.35 3.033 4.414 4.414 0 0 0 2.973 1.137h.157C7.32 14.1 8.56 12.83 9.996 11.363v-.008l.008.008c1.435 1.468 2.667 2.737 4.683 2.804h.157a4.379 4.379 0 0 0 2.973-1.137 4.05 4.05 0 0 0 1.35-3.033 4.085 4.085 0 0 0-1.365-3.025Zm-12.56 5.35c-.635.022-1.24-.2-1.694-.613a2.31 2.31 0 0 1 .008-3.416 2.388 2.388 0 0 1 1.6-.62h.086c1.138.037 1.922.782 3.31 2.206.032.037.071.074.103.104l-.008.014.008.008c-.032.037-.071.074-.102.103-1.389 1.432-2.173 2.177-3.311 2.214Zm11.21-.613a2.392 2.392 0 0 1-1.694.613c-1.138-.037-1.922-.782-3.31-2.206-.032-.037-.071-.074-.103-.104l.008-.015h-.008c.032-.036.07-.073.102-.103 1.389-1.424 2.173-2.17 3.31-2.206.62-.008 1.225.2 1.687.62.495.442.761 1.048.761 1.704 0 .65-.266 1.255-.753 1.697Z"
|
|
13
|
+
}));
|
|
14
|
+
|
|
15
|
+
export { SvgInfinite as default };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgPointInCircleColor = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "none",
|
|
9
|
+
viewBox: "0 0 24 24"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
11
|
+
fillRule: "evenodd",
|
|
12
|
+
clipPath: "url(#point_in_circle_color_svg__a)",
|
|
13
|
+
clipRule: "evenodd"
|
|
14
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15
|
+
fill: "#fff",
|
|
16
|
+
d: "M13.357 14.146h-2.375v2.715a1.02 1.02 0 0 1-2.037 0V6.678h4.412a3.737 3.737 0 0 1 3.733 3.735 3.737 3.737 0 0 1-3.733 3.733Zm-2.375-5.431h2.375a1.698 1.698 0 0 1 0 3.394h-2.375V8.715Z"
|
|
17
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fill: "#C6B5F6",
|
|
19
|
+
d: "M10.982 14.146h2.375a3.737 3.737 0 0 0 3.733-3.733 3.737 3.737 0 0 0-3.733-3.735H8.945v10.183a1.02 1.02 0 0 0 2.037 0v-2.715ZM.8 12C.8 5.815 5.814.8 12 .8 18.185.8 23.2 5.815 23.2 12c0 6.186-5.015 11.2-11.2 11.2C5.814 23.2.8 18.186.8 12Zm10.182-3.285h2.375a1.698 1.698 0 0 1 0 3.394h-2.375V8.715Z"
|
|
20
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
21
|
+
id: "point_in_circle_color_svg__a"
|
|
22
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
fill: "#fff",
|
|
24
|
+
d: "M0 0h24v24H0z"
|
|
25
|
+
}))));
|
|
26
|
+
|
|
27
|
+
export { SvgPointInCircleColor as default };
|
package/esm/index.js
CHANGED
|
@@ -79,6 +79,7 @@ export { default as GunColorIcon } from './GunColor.js';
|
|
|
79
79
|
export { default as HairIcon } from './Hair.js';
|
|
80
80
|
export { default as HeadphoneIcon } from './Headphone.js';
|
|
81
81
|
export { default as HeartIcon } from './Heart.js';
|
|
82
|
+
export { default as InfiniteIcon } from './Infinite.js';
|
|
82
83
|
export { default as InfoInCircleIcon } from './InfoInCircle.js';
|
|
83
84
|
export { default as InstagramIcon } from './Instagram.js';
|
|
84
85
|
export { default as KakaoColorIcon } from './KakaoColor.js';
|
|
@@ -126,6 +127,7 @@ export { default as PlugColorIcon } from './PlugColor.js';
|
|
|
126
127
|
export { default as PlusIcon } from './Plus.js';
|
|
127
128
|
export { default as PlusInCircleIcon } from './PlusInCircle.js';
|
|
128
129
|
export { default as PointInCircleIcon } from './PointInCircle.js';
|
|
130
|
+
export { default as PointInCircleColorIcon } from './PointInCircleColor.js';
|
|
129
131
|
export { default as PresentIcon } from './Present.js';
|
|
130
132
|
export { default as PresentColorIcon } from './PresentColor.js';
|
|
131
133
|
export { default as ProblemIcon } from './Problem.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"description": "Icon components for React based project",
|
|
5
5
|
"author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
|
|
6
6
|
"homepage": "https://github.com/weareteamturing/bombe#readme",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"react": "^18.2.0"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "ff2bb4a268feb0e491b6c8917718520b4396ac62"
|
|
37
37
|
}
|
package/svg/infinite.svg
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="ic/infinite">
|
|
3
|
+
<path id="Vector" d="M17.8016 6.97206C16.9543 6.19726 15.8404 5.79879 14.6793 5.83569C12.6711 5.9021 11.4316 7.1713 9.996 8.63974C9.996 8.63974 9.99599 8.63974 9.98815 8.64712C9.98815 8.64712 9.98815 8.64712 9.98031 8.63974C8.5447 7.1713 7.31307 5.9021 5.29695 5.83569C4.15945 5.79879 3.04549 6.19726 2.19825 6.97206C1.32748 7.75425 0.833252 8.86111 0.833252 9.99749C0.833252 11.1634 1.31179 12.2407 2.18256 13.0303C2.99058 13.7608 4.04178 14.1667 5.15574 14.1667C5.21066 14.1667 5.25773 14.1667 5.31264 14.1667C7.32091 14.1003 8.56039 12.8311 9.996 11.3626C9.996 11.3626 9.996 11.3626 9.996 11.3552C9.996 11.3552 9.996 11.3552 10.0038 11.3626C11.4394 12.8311 12.6711 14.1003 14.6872 14.1667C14.7421 14.1667 14.7892 14.1667 14.8441 14.1667C15.9581 14.1667 17.0093 13.7682 17.8173 13.0303C18.688 12.2407 19.1666 11.1634 19.1666 9.99749C19.1666 8.86111 18.6724 7.75425 17.8016 6.97206ZM5.24204 12.3219C4.60661 12.344 4.00256 12.1227 3.54756 11.7094C3.06118 11.2667 2.79446 10.6616 2.79446 9.99749C2.79446 9.34813 3.06902 8.74304 3.5554 8.29292C3.99471 7.89445 4.56738 7.67308 5.15574 7.67308C5.18712 7.67308 5.21066 7.67308 5.24204 7.67308C6.37954 7.70997 7.16402 8.45526 8.55255 9.87942C8.58393 9.91632 8.62315 9.95321 8.65453 9.98273L8.64669 9.99749L8.65453 10.0049C8.62315 10.0418 8.58393 10.0787 8.55255 10.1082C7.16402 11.5397 6.37954 12.285 5.24204 12.3219ZM16.4523 11.7094C15.9894 12.13 15.3775 12.344 14.7578 12.3219C13.6203 12.285 12.8358 11.5397 11.4473 10.1156C11.4159 10.0787 11.3767 10.0418 11.3453 10.0122L11.3531 9.99749H11.3453C11.3767 9.96059 11.4159 9.9237 11.4473 9.89418C12.8358 8.47002 13.6203 7.72473 14.7578 7.68784C15.3775 7.68046 15.9816 7.88707 16.4444 8.30768C16.9387 8.75042 17.2054 9.35551 17.2054 10.0122C17.2054 10.6616 16.9387 11.2667 16.4523 11.7094Z" fill="#7A828D"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_13405_39)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.357 14.146H10.982V16.861C10.9679 17.1215 10.8544 17.3668 10.6649 17.5462C10.4755 17.7257 10.2245 17.8257 9.96351 17.8257C9.70256 17.8257 9.45153 17.7257 9.26208 17.5462C9.07263 17.3668 8.95915 17.1215 8.94501 16.861V6.67798H13.357C14.3471 6.67904 15.2963 7.07295 15.9962 7.77323C16.6961 8.4735 17.0895 9.4229 17.09 10.413C17.089 11.4027 16.6953 12.3516 15.9955 13.0514C15.2956 13.7513 14.3467 14.1449 13.357 14.146ZM10.9821 8.715H13.3571C14.2941 8.715 15.0541 9.476 15.0541 10.412C15.0541 11.349 14.2931 12.109 13.3571 12.109H10.9821V8.715Z" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9818 14.146H13.3568C14.3465 14.1449 15.2954 13.7513 15.9953 13.0514C16.6951 12.3516 17.0887 11.4027 17.0898 10.413C17.0893 9.42291 16.6959 8.47351 15.996 7.77324C15.2961 7.07296 14.3469 6.67905 13.3568 6.67799H8.9448V16.861C8.95895 17.1216 9.07242 17.3668 9.26188 17.5462C9.45133 17.7257 9.70236 17.8257 9.9633 17.8257C10.2243 17.8257 10.4753 17.7257 10.6647 17.5462C10.8542 17.3668 10.9677 17.1216 10.9818 16.861V14.146ZM0.799805 12C0.799805 5.81499 5.8138 0.799988 11.9998 0.799988C18.1848 0.799988 23.1998 5.81499 23.1998 12C23.1998 18.186 18.1848 23.2 11.9998 23.2C5.8138 23.2 0.799805 18.186 0.799805 12ZM10.9819 8.71503H13.3569C14.2939 8.71503 15.0539 9.47603 15.0539 10.412C15.0539 11.349 14.2929 12.109 13.3569 12.109H10.9819V8.71503Z" fill="#C6B5F6"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_13405_39">
|
|
8
|
+
<rect width="24" height="24" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|