@teamturing/icons 1.40.2 → 1.41.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/Auto.d.ts +3 -0
- package/dist/ExternalLink.d.ts +3 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +41 -0
- package/esm/Auto.js +20 -0
- package/esm/ExternalLink.js +27 -0
- package/esm/index.js +2 -0
- package/package.json +2 -2
- package/svg/auto.svg +4 -0
- package/svg/external_link.svg +5 -0
package/dist/Auto.d.ts
ADDED
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { default as ArrowRightLimitIcon } from './ArrowRightLimit';
|
|
|
16
16
|
export { default as ArrowUpIcon } from './ArrowUp';
|
|
17
17
|
export { default as ArrowUpDownIcon } from './ArrowUpDown';
|
|
18
18
|
export { default as ArrowUpLimitIcon } from './ArrowUpLimit';
|
|
19
|
+
export { default as AutoIcon } from './Auto';
|
|
19
20
|
export { default as BarchartIcon } from './Barchart';
|
|
20
21
|
export { default as BookIcon } from './Book';
|
|
21
22
|
export { default as BookmarkIcon } from './Bookmark';
|
|
@@ -77,6 +78,7 @@ export { default as EnterIcon } from './Enter';
|
|
|
77
78
|
export { default as EqualIcon } from './Equal';
|
|
78
79
|
export { default as EraserIcon } from './Eraser';
|
|
79
80
|
export { default as ExclamationPointInCircleIcon } from './ExclamationPointInCircle';
|
|
81
|
+
export { default as ExternalLinkIcon } from './ExternalLink';
|
|
80
82
|
export { default as EyeOffIcon } from './EyeOff';
|
|
81
83
|
export { default as EyeOnIcon } from './EyeOn';
|
|
82
84
|
export { default as FaceHappyIcon } from './FaceHappy';
|
package/dist/index.js
CHANGED
|
@@ -284,6 +284,22 @@ const SvgArrowUpLimit = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
284
284
|
clipRule: "evenodd"
|
|
285
285
|
}));
|
|
286
286
|
|
|
287
|
+
const SvgAuto = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
288
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
289
|
+
width: "1em",
|
|
290
|
+
height: "1em",
|
|
291
|
+
fill: "none",
|
|
292
|
+
viewBox: "0 0 24 24"
|
|
293
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
294
|
+
fill: "currentColor",
|
|
295
|
+
fillRule: "evenodd",
|
|
296
|
+
d: "m23.723 10.94-2.037-2.78a1.2 1.2 0 0 0-1.936 0l-2.037 2.78c-.58.793-.014 1.909.968 1.909h.88a7.543 7.543 0 0 1-3.73 5.695c-2.301 1.334-5.25 1.334-7.553 0a1.1 1.1 0 0 0-1.102 1.904 9.755 9.755 0 0 0 4.88 1.314 9.756 9.756 0 0 0 4.878-1.313 9.803 9.803 0 0 0 3.57-3.57 9.74 9.74 0 0 0 1.258-4.03h.993a1.2 1.2 0 0 0 .968-1.91m-18.183.213h-.992a7.594 7.594 0 0 1 .962-2.93 7.61 7.61 0 0 1 2.768-2.766c2.302-1.332 5.25-1.332 7.554 0a1.1 1.1 0 0 0 1.102-1.905c-2.972-1.718-6.787-1.718-9.758 0a9.812 9.812 0 0 0-3.57 3.57 9.775 9.775 0 0 0-1.258 4.03H1.244a1.2 1.2 0 0 0-.968 1.91l2.148 2.932a1.2 1.2 0 0 0 1.936 0l2.148-2.932a1.2 1.2 0 0 0-.968-1.91",
|
|
297
|
+
clipRule: "evenodd"
|
|
298
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
299
|
+
fill: "currentColor",
|
|
300
|
+
d: "M10.354 14.963a.912.912 0 1 1-1.732-.568l1.909-5.617a1.2 1.2 0 0 1 1.136-.814h.663a1.2 1.2 0 0 1 1.137.815l1.902 5.623a.908.908 0 1 1-1.725.564l-.316-1H10.67l-.316.997Zm.748-2.369h1.793l-.864-2.742h-.064l-.865 2.742Z"
|
|
301
|
+
}));
|
|
302
|
+
|
|
287
303
|
const SvgBarchart = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
288
304
|
xmlns: "http://www.w3.org/2000/svg",
|
|
289
305
|
width: "1em",
|
|
@@ -1230,6 +1246,29 @@ const SvgExclamationPointInCircle = props => /*#__PURE__*/React__namespace.creat
|
|
|
1230
1246
|
clipRule: "evenodd"
|
|
1231
1247
|
}));
|
|
1232
1248
|
|
|
1249
|
+
const SvgExternalLink = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1250
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1251
|
+
width: "1em",
|
|
1252
|
+
height: "1em",
|
|
1253
|
+
fill: "none",
|
|
1254
|
+
viewBox: "0 0 24 24"
|
|
1255
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
1256
|
+
fill: "currentColor",
|
|
1257
|
+
fillRule: "evenodd",
|
|
1258
|
+
d: "M5.953 4.326c-.899 0-1.627.728-1.627 1.627v12.094c0 .899.728 1.627 1.627 1.627h12.094c.899 0 1.627-.728 1.627-1.627V12A1.163 1.163 0 1 1 22 12v6.047A3.953 3.953 0 0 1 18.047 22H5.953A3.953 3.953 0 0 1 2 18.047V5.953A3.953 3.953 0 0 1 5.953 2H12a1.163 1.163 0 1 1 0 2.326H5.953Z",
|
|
1259
|
+
clipRule: "evenodd"
|
|
1260
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
1261
|
+
fill: "currentColor",
|
|
1262
|
+
fillRule: "evenodd",
|
|
1263
|
+
d: "M13.308 10.682a1.06 1.06 0 0 0 1.5 0l5.668-5.668a1.06 1.06 0 0 0-1.5-1.5l-5.668 5.668a1.06 1.06 0 0 0 0 1.5Z",
|
|
1264
|
+
clipRule: "evenodd"
|
|
1265
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
1266
|
+
fill: "currentColor",
|
|
1267
|
+
fillRule: "evenodd",
|
|
1268
|
+
d: "M15.24 3.163c0-.642.52-1.163 1.163-1.163h4.419c.642 0 1.162.52 1.162 1.163V7.58a1.163 1.163 0 0 1-2.325 0V4.326h-3.256c-.642 0-1.163-.521-1.163-1.163Z",
|
|
1269
|
+
clipRule: "evenodd"
|
|
1270
|
+
}));
|
|
1271
|
+
|
|
1233
1272
|
const SvgEyeOff = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1234
1273
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1235
1274
|
width: "1em",
|
|
@@ -3569,6 +3608,7 @@ exports.ArrowRightLimitIcon = SvgArrowRightLimit;
|
|
|
3569
3608
|
exports.ArrowUpDownIcon = SvgArrowUpDown;
|
|
3570
3609
|
exports.ArrowUpIcon = SvgArrowUp;
|
|
3571
3610
|
exports.ArrowUpLimitIcon = SvgArrowUpLimit;
|
|
3611
|
+
exports.AutoIcon = SvgAuto;
|
|
3572
3612
|
exports.BarchartIcon = SvgBarchart;
|
|
3573
3613
|
exports.BookIcon = SvgBook;
|
|
3574
3614
|
exports.BookmarkAnimationIcon = SvgBookmarkAnimation;
|
|
@@ -3630,6 +3670,7 @@ exports.EnterIcon = SvgEnter;
|
|
|
3630
3670
|
exports.EqualIcon = SvgEqual;
|
|
3631
3671
|
exports.EraserIcon = SvgEraser;
|
|
3632
3672
|
exports.ExclamationPointInCircleIcon = SvgExclamationPointInCircle;
|
|
3673
|
+
exports.ExternalLinkIcon = SvgExternalLink;
|
|
3633
3674
|
exports.EyeOffIcon = SvgEyeOff;
|
|
3634
3675
|
exports.EyeOnIcon = SvgEyeOn;
|
|
3635
3676
|
exports.FaceHappyIcon = SvgFaceHappy;
|
package/esm/Auto.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgAuto = 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("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "m23.723 10.94-2.037-2.78a1.2 1.2 0 0 0-1.936 0l-2.037 2.78c-.58.793-.014 1.909.968 1.909h.88a7.543 7.543 0 0 1-3.73 5.695c-2.301 1.334-5.25 1.334-7.553 0a1.1 1.1 0 0 0-1.102 1.904 9.755 9.755 0 0 0 4.88 1.314 9.756 9.756 0 0 0 4.878-1.313 9.803 9.803 0 0 0 3.57-3.57 9.74 9.74 0 0 0 1.258-4.03h.993a1.2 1.2 0 0 0 .968-1.91m-18.183.213h-.992a7.594 7.594 0 0 1 .962-2.93 7.61 7.61 0 0 1 2.768-2.766c2.302-1.332 5.25-1.332 7.554 0a1.1 1.1 0 0 0 1.102-1.905c-2.972-1.718-6.787-1.718-9.758 0a9.812 9.812 0 0 0-3.57 3.57 9.775 9.775 0 0 0-1.258 4.03H1.244a1.2 1.2 0 0 0-.968 1.91l2.148 2.932a1.2 1.2 0 0 0 1.936 0l2.148-2.932a1.2 1.2 0 0 0-.968-1.91",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
d: "M10.354 14.963a.912.912 0 1 1-1.732-.568l1.909-5.617a1.2 1.2 0 0 1 1.136-.814h.663a1.2 1.2 0 0 1 1.137.815l1.902 5.623a.908.908 0 1 1-1.725.564l-.316-1H10.67l-.316.997Zm.748-2.369h1.793l-.864-2.742h-.064l-.865 2.742Z"
|
|
18
|
+
}));
|
|
19
|
+
|
|
20
|
+
export { SvgAuto as default };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgExternalLink = 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("path", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M5.953 4.326c-.899 0-1.627.728-1.627 1.627v12.094c0 .899.728 1.627 1.627 1.627h12.094c.899 0 1.627-.728 1.627-1.627V12A1.163 1.163 0 1 1 22 12v6.047A3.953 3.953 0 0 1 18.047 22H5.953A3.953 3.953 0 0 1 2 18.047V5.953A3.953 3.953 0 0 1 5.953 2H12a1.163 1.163 0 1 1 0 2.326H5.953Z",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
d: "M13.308 10.682a1.06 1.06 0 0 0 1.5 0l5.668-5.668a1.06 1.06 0 0 0-1.5-1.5l-5.668 5.668a1.06 1.06 0 0 0 0 1.5Z",
|
|
19
|
+
clipRule: "evenodd"
|
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fill: "currentColor",
|
|
22
|
+
fillRule: "evenodd",
|
|
23
|
+
d: "M15.24 3.163c0-.642.52-1.163 1.163-1.163h4.419c.642 0 1.162.52 1.162 1.163V7.58a1.163 1.163 0 0 1-2.325 0V4.326h-3.256c-.642 0-1.163-.521-1.163-1.163Z",
|
|
24
|
+
clipRule: "evenodd"
|
|
25
|
+
}));
|
|
26
|
+
|
|
27
|
+
export { SvgExternalLink as default };
|
package/esm/index.js
CHANGED
|
@@ -16,6 +16,7 @@ export { default as ArrowRightLimitIcon } from './ArrowRightLimit.js';
|
|
|
16
16
|
export { default as ArrowUpIcon } from './ArrowUp.js';
|
|
17
17
|
export { default as ArrowUpDownIcon } from './ArrowUpDown.js';
|
|
18
18
|
export { default as ArrowUpLimitIcon } from './ArrowUpLimit.js';
|
|
19
|
+
export { default as AutoIcon } from './Auto.js';
|
|
19
20
|
export { default as BarchartIcon } from './Barchart.js';
|
|
20
21
|
export { default as BookIcon } from './Book.js';
|
|
21
22
|
export { default as BookmarkIcon } from './Bookmark.js';
|
|
@@ -77,6 +78,7 @@ export { default as EnterIcon } from './Enter.js';
|
|
|
77
78
|
export { default as EqualIcon } from './Equal.js';
|
|
78
79
|
export { default as EraserIcon } from './Eraser.js';
|
|
79
80
|
export { default as ExclamationPointInCircleIcon } from './ExclamationPointInCircle.js';
|
|
81
|
+
export { default as ExternalLinkIcon } from './ExternalLink.js';
|
|
80
82
|
export { default as EyeOffIcon } from './EyeOff.js';
|
|
81
83
|
export { default as EyeOnIcon } from './EyeOn.js';
|
|
82
84
|
export { default as FaceHappyIcon } from './FaceHappy.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.41.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",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"react": "^18.2.0"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "b2c810fa21527d0a188655ac141f41df83ca7503"
|
|
42
42
|
}
|
package/svg/auto.svg
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.7229 10.94L21.6859 8.16001C21.5745 8.0079 21.4288 7.8842 21.2606 7.79893C21.0924 7.71366 20.9065 7.66922 20.7179 7.66922C20.5294 7.66922 20.3434 7.71366 20.1753 7.79893C20.0071 7.8842 19.8614 8.0079 19.7499 8.16001L17.7129 10.94C17.1329 11.733 17.6989 12.849 18.6809 12.849H19.5609C19.4291 14.0242 19.0228 15.1519 18.3748 16.1412C17.7269 17.1304 16.8555 17.9535 15.8309 18.544C13.5299 19.878 10.5809 19.878 8.27792 18.544C8.0256 18.4009 7.727 18.3633 7.44709 18.4393C7.16717 18.5153 6.92861 18.6988 6.78331 18.9499C6.63802 19.2009 6.59776 19.4992 6.67128 19.7797C6.74481 20.0603 6.92618 20.3005 7.17592 20.448C8.65891 21.3071 10.3421 21.7603 12.0559 21.762C13.769 21.7602 15.4514 21.3073 16.9339 20.449C18.4152 19.5911 19.646 18.3603 20.5039 16.879C21.2128 15.6438 21.6423 14.2682 21.7619 12.849H22.7549C22.9768 12.8491 23.1943 12.7877 23.3834 12.6717C23.5724 12.5556 23.7256 12.3894 23.8259 12.1915C23.9262 11.9936 23.9696 11.7718 23.9515 11.5507C23.9333 11.3296 23.8542 11.1179 23.7229 10.939M5.53992 11.152H4.54792C4.66481 10.1198 4.99223 9.1226 5.50992 8.22201C6.17571 7.0745 7.12992 6.12097 8.27792 5.45601C10.5799 4.12401 13.5289 4.12401 15.8319 5.45601C16.0845 5.60215 16.3849 5.64194 16.6668 5.56665C16.9488 5.49135 17.1893 5.30713 17.3354 5.05451C17.4816 4.80189 17.5213 4.50157 17.4461 4.21961C17.3708 3.93765 17.1865 3.69715 16.9339 3.55101C13.9619 1.83301 10.1469 1.83301 7.17592 3.55101C5.69489 4.40924 4.46415 5.63999 3.60592 7.12101C2.89804 8.35667 2.46869 9.73208 2.34792 11.151H1.24392C1.02207 11.1509 0.804537 11.2123 0.615479 11.3284C0.426422 11.4444 0.273241 11.6107 0.172953 11.8085C0.0726642 12.0064 0.0291937 12.2282 0.0473699 12.4493C0.0655461 12.6704 0.144657 12.8822 0.275916 13.061L2.42392 15.993C2.53536 16.1451 2.68108 16.2688 2.84926 16.3541C3.01744 16.4394 3.20335 16.4838 3.39192 16.4838C3.58048 16.4838 3.76639 16.4394 3.93457 16.3541C4.10275 16.2688 4.24847 16.1451 4.35992 15.993L6.50792 13.061C6.63918 12.8822 6.71829 12.6704 6.73646 12.4493C6.75464 12.2282 6.71117 12.0064 6.61088 11.8085C6.51059 11.6107 6.35741 11.4444 6.16835 11.3284C5.9793 11.2123 5.76176 11.1509 5.53992 11.151" fill="#8D94A0"/>
|
|
3
|
+
<path d="M10.3545 14.9631C10.2346 15.3423 9.88284 15.6 9.48519 15.6C8.86068 15.6 8.42105 14.9863 8.62196 14.395L10.5305 8.77799C10.6958 8.29136 11.1527 7.96405 11.6667 7.96405H12.3299C12.8444 7.96405 13.3016 8.29204 13.4666 8.7794L15.3691 14.4016C15.5682 14.99 15.1306 15.6 14.5095 15.6C14.1136 15.6 13.7635 15.3434 13.6441 14.966L13.3278 13.9652H10.6699L10.3545 14.9631ZM11.1024 12.5941H12.8953L12.0305 9.85194H11.9672L11.1024 12.5941Z" fill="#8D94A0"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.95341 4.32554C5.05436 4.32554 4.32554 5.05436 4.32554 5.95341V18.0466C4.32554 18.9456 5.05436 19.6745 5.95341 19.6745H18.0466C18.9456 19.6745 19.6745 18.9456 19.6745 18.0466V12C19.6745 11.3578 20.1951 10.8372 20.8372 10.8372C21.4794 10.8372 22 11.3578 22 12V18.0466C22 20.23 20.23 22 18.0466 22H5.95341C3.77 22 2 20.23 2 18.0466V5.95341C2 3.77 3.77 2 5.95341 2H12C12.6422 2 13.1628 2.52059 13.1628 3.16277C13.1628 3.80495 12.6422 4.32554 12 4.32554H5.95341Z" fill="#8D94A0"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.3078 10.6821C13.7219 11.0963 14.3934 11.0963 14.8075 10.6821L20.4761 5.01351C20.8902 4.59937 20.8902 3.92792 20.4761 3.51378C20.062 3.09965 19.3905 3.09965 18.9764 3.51378L13.3078 9.18239C12.8936 9.59653 12.8936 10.268 13.3078 10.6821Z" fill="#8D94A0"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2402 3.16277C15.2402 2.52059 15.7608 2 16.4029 2H20.8215C21.4637 2 21.9843 2.52059 21.9843 3.16277V7.58138C21.9843 8.22356 21.4637 8.74415 20.8215 8.74415C20.1794 8.74415 19.6588 8.22356 19.6588 7.58138V4.32554H16.4029C15.7608 4.32554 15.2402 3.80495 15.2402 3.16277Z" fill="#8D94A0"/>
|
|
5
|
+
</svg>
|