@teamturing/icons 1.37.0 → 1.37.2
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/BookmarkAnimation.d.ts +3 -0
- package/dist/ChatBubbleQuestionAnimation.d.ts +3 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +33 -5
- package/esm/BookmarkAnimation.js +17 -0
- package/esm/ChatBubbleQuestionAnimation.js +16 -0
- package/esm/Present.js +6 -5
- package/esm/index.js +2 -0
- package/package.json +2 -2
- package/svg/bookmark_animation.svg +3 -0
- package/svg/chat_bubble_question_animation.svg +3 -0
- package/svg/present.svg +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export { default as ArrowUpLimitIcon } from './ArrowUpLimit';
|
|
|
18
18
|
export { default as BarchartIcon } from './Barchart';
|
|
19
19
|
export { default as BookIcon } from './Book';
|
|
20
20
|
export { default as BookmarkIcon } from './Bookmark';
|
|
21
|
+
export { default as BookmarkAnimationIcon } from './BookmarkAnimation';
|
|
21
22
|
export { default as BoxIcon } from './Box';
|
|
22
23
|
export { default as BusColorIcon } from './BusColor';
|
|
23
24
|
export { default as CalendarCheckIcon } from './CalendarCheck';
|
|
@@ -38,6 +39,7 @@ export { default as ChatBubbleCorrectIcon } from './ChatBubbleCorrect';
|
|
|
38
39
|
export { default as ChatBubbleCorrectColorIcon } from './ChatBubbleCorrectColor';
|
|
39
40
|
export { default as ChatBubbleDotsIcon } from './ChatBubbleDots';
|
|
40
41
|
export { default as ChatBubbleQuestionIcon } from './ChatBubbleQuestion';
|
|
42
|
+
export { default as ChatBubbleQuestionAnimationIcon } from './ChatBubbleQuestionAnimation';
|
|
41
43
|
export { default as CheckIcon } from './Check';
|
|
42
44
|
export { default as CheckInCircleIcon } from './CheckInCircle';
|
|
43
45
|
export { default as CheckInCircleColorIcon } from './CheckInCircleColor';
|
package/dist/index.js
CHANGED
|
@@ -329,6 +329,19 @@ const SvgBookmark = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
329
329
|
clipRule: "evenodd"
|
|
330
330
|
}));
|
|
331
331
|
|
|
332
|
+
const SvgBookmarkAnimation = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
333
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
334
|
+
width: "1em",
|
|
335
|
+
height: "1em",
|
|
336
|
+
fill: "none",
|
|
337
|
+
viewBox: "0 0 24 24"
|
|
338
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
339
|
+
fill: "currentColor",
|
|
340
|
+
fillRule: "evenodd",
|
|
341
|
+
d: "M3.5 3.4c0-.7.5-1.2 1.2-1.2h14.6c.7 0 1.2.5 1.2 1.2v17.3c0 .5-.5.8-.9.5l-7-4c-.4-.2-.8-.2-1.2 0l-7 4c-.4.2-.9-.1-.9-.5V3.4Z",
|
|
342
|
+
clipRule: "evenodd"
|
|
343
|
+
}));
|
|
344
|
+
|
|
332
345
|
const SvgBox = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
333
346
|
xmlns: "http://www.w3.org/2000/svg",
|
|
334
347
|
width: "1em",
|
|
@@ -669,6 +682,18 @@ const SvgChatBubbleQuestion = props => /*#__PURE__*/React__namespace.createEleme
|
|
|
669
682
|
clipRule: "evenodd"
|
|
670
683
|
}));
|
|
671
684
|
|
|
685
|
+
const SvgChatBubbleQuestionAnimation = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
686
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
687
|
+
width: "1em",
|
|
688
|
+
height: "1em",
|
|
689
|
+
viewBox: "0 0 24 24"
|
|
690
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
691
|
+
fill: "currentColor",
|
|
692
|
+
fillRule: "evenodd",
|
|
693
|
+
d: "M12 .922c6.065 0 11 4.485 11 10 0 5.514-4.935 10-11 10-1.205 0-2.509-.121-2.953-.166l-3.568 1.918a.7.7 0 0 1-1.028-.683l.327-3.423C1.999 16.494 1 13.28 1 10.922c0-5.515 4.935-10 11-10Zm.072 13.05a1.2 1.2 0 1 0 .002 2.398 1.2 1.2 0 0 0-.002-2.397v-.001ZM12.057 5.5a3.238 3.238 0 0 0-3.234 3.234.788.788 0 0 0 1.573 0c0-.916.745-1.661 1.661-1.661.564 0 1.136.26 1.457.662.245.308.321.675.224 1.091-.109.48-.39.679-.924 1.02-.65.417-1.543.988-1.543 2.435a.787.787 0 0 0 1.573 0c0-.565.237-.739.82-1.111.57-.365 1.35-.864 1.607-1.992.203-.88.016-1.74-.528-2.424-.616-.773-1.645-1.254-2.686-1.254Z",
|
|
694
|
+
clipRule: "evenodd"
|
|
695
|
+
}));
|
|
696
|
+
|
|
672
697
|
const SvgCheck = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
673
698
|
xmlns: "http://www.w3.org/2000/svg",
|
|
674
699
|
width: "1em",
|
|
@@ -2567,15 +2592,16 @@ const SvgPresent = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
2567
2592
|
width: "1em",
|
|
2568
2593
|
height: "1em",
|
|
2569
2594
|
fill: "none",
|
|
2570
|
-
viewBox: "0 0
|
|
2595
|
+
viewBox: "0 0 25 25"
|
|
2571
2596
|
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2572
|
-
fill: "
|
|
2573
|
-
d: "M3
|
|
2597
|
+
fill: "currentColor",
|
|
2598
|
+
d: "M3.39 8.764a2 2 0 0 1 2-2h5.5v16h-5.5a2 2 0 0 1-2-2v-12ZM13.89 6.764h5.5a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-5.5v-16Z"
|
|
2574
2599
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2575
2600
|
fill: "currentColor",
|
|
2576
2601
|
fillRule: "evenodd",
|
|
2577
|
-
d: "M10.
|
|
2578
|
-
clipRule: "evenodd"
|
|
2602
|
+
d: "M10.89 6.764H6.745l-.346-2.908c-.087-.729.64-1.288 1.335-1.027L12.39 4.58l4.658-1.751c.694-.261 1.421.298 1.335 1.027l-.347 2.908H13.89v16h-3v-16Z",
|
|
2603
|
+
clipRule: "evenodd",
|
|
2604
|
+
opacity: 0.6
|
|
2579
2605
|
}));
|
|
2580
2606
|
|
|
2581
2607
|
const SvgPresentColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
@@ -3605,6 +3631,7 @@ exports.ArrowUpIcon = SvgArrowUp;
|
|
|
3605
3631
|
exports.ArrowUpLimitIcon = SvgArrowUpLimit;
|
|
3606
3632
|
exports.BarchartIcon = SvgBarchart;
|
|
3607
3633
|
exports.BookIcon = SvgBook;
|
|
3634
|
+
exports.BookmarkAnimationIcon = SvgBookmarkAnimation;
|
|
3608
3635
|
exports.BookmarkIcon = SvgBookmark;
|
|
3609
3636
|
exports.BoxIcon = SvgBox;
|
|
3610
3637
|
exports.BusColorIcon = SvgBusColor;
|
|
@@ -3625,6 +3652,7 @@ exports.ChatBubbleCorrectColorIcon = SvgChatBubbleCorrectColor;
|
|
|
3625
3652
|
exports.ChatBubbleCorrectIcon = SvgChatBubbleCorrect;
|
|
3626
3653
|
exports.ChatBubbleDotsIcon = SvgChatBubbleDots;
|
|
3627
3654
|
exports.ChatBubbleIcon = SvgChatBubble;
|
|
3655
|
+
exports.ChatBubbleQuestionAnimationIcon = SvgChatBubbleQuestionAnimation;
|
|
3628
3656
|
exports.ChatBubbleQuestionIcon = SvgChatBubbleQuestion;
|
|
3629
3657
|
exports.CheckIcon = SvgCheck;
|
|
3630
3658
|
exports.CheckInCircleColorIcon = SvgCheckInCircleColor;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgBookmarkAnimation = 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: "M3.5 3.4c0-.7.5-1.2 1.2-1.2h14.6c.7 0 1.2.5 1.2 1.2v17.3c0 .5-.5.8-.9.5l-7-4c-.4-.2-.8-.2-1.2 0l-7 4c-.4.2-.9-.1-.9-.5V3.4Z",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
}));
|
|
16
|
+
|
|
17
|
+
export { SvgBookmarkAnimation as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgChatBubbleQuestionAnimation = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
viewBox: "0 0 24 24"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fill: "currentColor",
|
|
11
|
+
fillRule: "evenodd",
|
|
12
|
+
d: "M12 .922c6.065 0 11 4.485 11 10 0 5.514-4.935 10-11 10-1.205 0-2.509-.121-2.953-.166l-3.568 1.918a.7.7 0 0 1-1.028-.683l.327-3.423C1.999 16.494 1 13.28 1 10.922c0-5.515 4.935-10 11-10Zm.072 13.05a1.2 1.2 0 1 0 .002 2.398 1.2 1.2 0 0 0-.002-2.397v-.001ZM12.057 5.5a3.238 3.238 0 0 0-3.234 3.234.788.788 0 0 0 1.573 0c0-.916.745-1.661 1.661-1.661.564 0 1.136.26 1.457.662.245.308.321.675.224 1.091-.109.48-.39.679-.924 1.02-.65.417-1.543.988-1.543 2.435a.787.787 0 0 0 1.573 0c0-.565.237-.739.82-1.111.57-.365 1.35-.864 1.607-1.992.203-.88.016-1.74-.528-2.424-.616-.773-1.645-1.254-2.686-1.254Z",
|
|
13
|
+
clipRule: "evenodd"
|
|
14
|
+
}));
|
|
15
|
+
|
|
16
|
+
export { SvgChatBubbleQuestionAnimation as default };
|
package/esm/Present.js
CHANGED
|
@@ -6,15 +6,16 @@ const SvgPresent = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
|
6
6
|
width: "1em",
|
|
7
7
|
height: "1em",
|
|
8
8
|
fill: "none",
|
|
9
|
-
viewBox: "0 0
|
|
9
|
+
viewBox: "0 0 25 25"
|
|
10
10
|
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
-
fill: "
|
|
12
|
-
d: "M3
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
d: "M3.39 8.764a2 2 0 0 1 2-2h5.5v16h-5.5a2 2 0 0 1-2-2v-12ZM13.89 6.764h5.5a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-5.5v-16Z"
|
|
13
13
|
}), /*#__PURE__*/React.createElement("path", {
|
|
14
14
|
fill: "currentColor",
|
|
15
15
|
fillRule: "evenodd",
|
|
16
|
-
d: "M10.
|
|
17
|
-
clipRule: "evenodd"
|
|
16
|
+
d: "M10.89 6.764H6.745l-.346-2.908c-.087-.729.64-1.288 1.335-1.027L12.39 4.58l4.658-1.751c.694-.261 1.421.298 1.335 1.027l-.347 2.908H13.89v16h-3v-16Z",
|
|
17
|
+
clipRule: "evenodd",
|
|
18
|
+
opacity: 0.6
|
|
18
19
|
}));
|
|
19
20
|
|
|
20
21
|
export { SvgPresent as default };
|
package/esm/index.js
CHANGED
|
@@ -18,6 +18,7 @@ export { default as ArrowUpLimitIcon } from './ArrowUpLimit.js';
|
|
|
18
18
|
export { default as BarchartIcon } from './Barchart.js';
|
|
19
19
|
export { default as BookIcon } from './Book.js';
|
|
20
20
|
export { default as BookmarkIcon } from './Bookmark.js';
|
|
21
|
+
export { default as BookmarkAnimationIcon } from './BookmarkAnimation.js';
|
|
21
22
|
export { default as BoxIcon } from './Box.js';
|
|
22
23
|
export { default as BusColorIcon } from './BusColor.js';
|
|
23
24
|
export { default as CalendarCheckIcon } from './CalendarCheck.js';
|
|
@@ -38,6 +39,7 @@ export { default as ChatBubbleCorrectIcon } from './ChatBubbleCorrect.js';
|
|
|
38
39
|
export { default as ChatBubbleCorrectColorIcon } from './ChatBubbleCorrectColor.js';
|
|
39
40
|
export { default as ChatBubbleDotsIcon } from './ChatBubbleDots.js';
|
|
40
41
|
export { default as ChatBubbleQuestionIcon } from './ChatBubbleQuestion.js';
|
|
42
|
+
export { default as ChatBubbleQuestionAnimationIcon } from './ChatBubbleQuestionAnimation.js';
|
|
41
43
|
export { default as CheckIcon } from './Check.js';
|
|
42
44
|
export { default as CheckInCircleIcon } from './CheckInCircle.js';
|
|
43
45
|
export { default as CheckInCircleColorIcon } from './CheckInCircleColor.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.37.
|
|
3
|
+
"version": "1.37.2",
|
|
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": "d3639daaffc362cc5ab07fa2591d74d0ad0091c1"
|
|
42
42
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
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="M3.5 3.4C3.5 2.7 4 2.2 4.7 2.2H19.3C20 2.2 20.5 2.7 20.5 3.4V20.7C20.5 21.2 20 21.5 19.6 21.2L12.6 17.2C12.2 17 11.8 17 11.4 17.2L4.4 21.2C4 21.4 3.5 21.1 3.5 20.7V3.4Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 0.921997C18.065 0.921997 23 5.407 23 10.922C23 16.436 18.065 20.922 12 20.922C10.795 20.922 9.491 20.801 9.047 20.756L5.479 22.674C5.3674 22.7339 5.24162 22.7624 5.11508 22.7565C4.98855 22.7506 4.86599 22.7104 4.76048 22.6403C4.65497 22.5702 4.57046 22.4728 4.51596 22.3585C4.46146 22.2441 4.43901 22.1171 4.451 21.991L4.778 18.568C1.999 16.494 1 13.28 1 10.922C1 5.407 5.935 0.921997 12 0.921997ZM12.072 13.972C11.7541 13.9723 11.4493 14.0987 11.2245 14.3235C10.9997 14.5483 10.8733 14.8531 10.873 15.171C10.8726 15.4085 10.9427 15.6407 11.0743 15.8383C11.206 16.036 11.3933 16.1901 11.6126 16.2812C11.8319 16.3723 12.0733 16.3963 12.3062 16.3501C12.5392 16.304 12.7532 16.1897 12.9212 16.0219C13.0892 15.854 13.2036 15.6401 13.2499 15.4072C13.2963 15.1743 13.2725 14.9329 13.1816 14.7135C13.0906 14.4942 12.9367 14.3067 12.7392 14.1749C12.5417 14.0431 12.3095 13.9728 12.072 13.973V13.972ZM12.057 5.5C11.1996 5.50106 10.3776 5.84212 9.77139 6.44838C9.16512 7.05465 8.82406 7.87661 8.823 8.734C8.83537 8.93419 8.92362 9.12214 9.06976 9.25952C9.21589 9.39691 9.40892 9.4734 9.6095 9.4734C9.81008 9.4734 10.0031 9.39691 10.1492 9.25952C10.2954 9.12214 10.3836 8.93419 10.396 8.734C10.396 7.818 11.141 7.073 12.057 7.073C12.621 7.073 13.193 7.333 13.514 7.735C13.759 8.043 13.835 8.41 13.738 8.826C13.629 9.306 13.348 9.505 12.814 9.846C12.164 10.263 11.271 10.834 11.271 12.281C11.2783 12.4847 11.3643 12.6777 11.511 12.8193C11.6577 12.9608 11.8536 13.0399 12.0575 13.0399C12.2614 13.0399 12.4573 12.9608 12.604 12.8193C12.7507 12.6777 12.8367 12.4847 12.844 12.281C12.844 11.716 13.081 11.542 13.664 11.17C14.234 10.805 15.014 10.306 15.271 9.178C15.474 8.298 15.287 7.438 14.743 6.754C14.127 5.981 13.098 5.5 12.057 5.5Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
package/svg/present.svg
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="M3
|
|
3
|
-
<path d="M13.
|
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.
|
|
1
|
+
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3.39062 8.76367C3.39062 7.6591 4.28606 6.76367 5.39062 6.76367H10.8906V22.7637H5.39062C4.28606 22.7637 3.39062 21.8682 3.39062 20.7637V8.76367Z" fill="#8D94A0"/>
|
|
3
|
+
<path d="M13.8906 6.76367H19.3906C20.4952 6.76367 21.3906 7.6591 21.3906 8.76367V20.7637C21.3906 21.8682 20.4952 22.7637 19.3906 22.7637H13.8906V6.76367Z" fill="#8D94A0"/>
|
|
4
|
+
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M10.8906 6.76367L6.74434 6.76367L6.3977 3.85553C6.31089 3.12717 7.03814 2.56781 7.7325 2.82889L12.3906 4.58038L17.0488 2.82889C17.7431 2.56781 18.4704 3.12717 18.3835 3.85553L18.0369 6.76367L13.8906 6.76367V22.7637H10.8906V6.76367Z" fill="#8D94A0"/>
|
|
5
5
|
</svg>
|