@teamturing/react-kit 2.21.13 → 2.21.15
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/index.js +135 -0
- package/esm/packages/icons/esm/LetterCrownOpenColor.js +35 -0
- package/esm/packages/icons/esm/LetterHeartOpenColor.js +35 -0
- package/esm/packages/icons/esm/PaperPen.js +31 -0
- package/esm/packages/icons/esm/PaperPenColor.js +31 -0
- package/esm/packages/icons/esm/PaperTwo.js +18 -0
- package/esm/packages/icons/esm/index.js +5 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -2576,6 +2576,37 @@ const SvgLetterCrownColor = props => /*#__PURE__*/React__namespace.createElement
|
|
|
2576
2576
|
clipRule: "evenodd"
|
|
2577
2577
|
}));
|
|
2578
2578
|
|
|
2579
|
+
const SvgLetterCrownOpenColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2580
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2581
|
+
width: "1em",
|
|
2582
|
+
height: "1em",
|
|
2583
|
+
fill: "none",
|
|
2584
|
+
viewBox: "0 0 24 24"
|
|
2585
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2586
|
+
fill: "#FFE8A1",
|
|
2587
|
+
d: "M22.256 10.696H1.804A.804.804 0 0 1 1.27 9.29L10.696.915a2.04 2.04 0 0 1 2.718.008l9.303 8.367c.17.153.267.37.267.6 0 .445-.282.806-.728.806Z"
|
|
2588
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2589
|
+
fill: "#FCDDDD",
|
|
2590
|
+
d: "M1.008 11.04c0-1.127-.16-2.04.966-2.04h20.055c1.126 0 .963.913.963 2.04v10.51c0 1.126.085 2.04-1.041 2.04H1.974c-1.126 0-.966-.914-.966-2.04V11.04Z"
|
|
2591
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2592
|
+
fill: "#FDE2E2",
|
|
2593
|
+
d: "M1.974 23.59h20.133c.627 0 .885-.509.885-1.136 0-.195-.05-.387-.146-.556l-4.882-8.662a2.04 2.04 0 0 0-1.777-1.038H8.245a2.04 2.04 0 0 0-1.75.992l-5.35 8.937a.966.966 0 0 0-.137.496c0 .534.157.966.966.966Z"
|
|
2594
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2595
|
+
fill: "#FFF9E8",
|
|
2596
|
+
d: "M2 3.2c0-.22.18-.4.4-.4h19.2c.22 0 .4.18.4.4v15.4a.4.4 0 0 1-.4.4H2.4a.4.4 0 0 1-.4-.4V3.2Z"
|
|
2597
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2598
|
+
fill: "#FFCD39",
|
|
2599
|
+
fillRule: "evenodd",
|
|
2600
|
+
d: "M9.16 10.657a.384.384 0 0 1-.377-.346l-.48-4.261c-.043-.382.42-.592.664-.301l1.425 1.691 1.053-2.303a.563.563 0 0 1 1.031 0L13.53 7.44l1.424-1.691c.245-.29.708-.081.665.301l-.48 4.26a.384.384 0 0 1-.378.347h-5.6Z",
|
|
2601
|
+
clipRule: "evenodd"
|
|
2602
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2603
|
+
fill: "#FFE8A1",
|
|
2604
|
+
d: "M22.992 21.55V11.04c0-1.127.163-2.04-.963-2.04h-.633a.4.4 0 0 0-.316.155L17.8 13.4H6.6L3.12 9.147A.4.4 0 0 0 2.81 9h-.836c-1.126 0-.966.913-.966 2.04v10.51c0 1.126-.16 2.04.966 2.04H21.95c1.126 0 1.04-.914 1.04-2.04Z"
|
|
2605
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2606
|
+
fill: "#FFEFC0",
|
|
2607
|
+
d: "M1.966 23.591H22.1c.626 0 .884-.508.884-1.134 0-.195-.05-.387-.146-.557l-4.882-8.662a2.04 2.04 0 0 0-1.777-1.038H8.237a2.04 2.04 0 0 0-1.75.992l-5.35 8.937a.966.966 0 0 0-.137.496c0 .534.157.966.966.966Z"
|
|
2608
|
+
}));
|
|
2609
|
+
|
|
2579
2610
|
const SvgLetterHeartColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2580
2611
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2581
2612
|
width: "1em",
|
|
@@ -2598,6 +2629,37 @@ const SvgLetterHeartColor = props => /*#__PURE__*/React__namespace.createElement
|
|
|
2598
2629
|
clipRule: "evenodd"
|
|
2599
2630
|
}));
|
|
2600
2631
|
|
|
2632
|
+
const SvgLetterHeartOpenColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2633
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2634
|
+
width: "1em",
|
|
2635
|
+
height: "1em",
|
|
2636
|
+
fill: "none",
|
|
2637
|
+
viewBox: "0 0 24 24"
|
|
2638
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2639
|
+
fill: "#FFD5D5",
|
|
2640
|
+
d: "M22.256 10.696H1.804A.804.804 0 0 1 1.27 9.29L10.696.915a2.04 2.04 0 0 1 2.718.008l9.303 8.367c.17.153.267.37.267.6 0 .445-.282.806-.728.806Z"
|
|
2641
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2642
|
+
fill: "#FCDDDD",
|
|
2643
|
+
d: "M1.008 11.04c0-1.127-.16-2.04.966-2.04h20.055c1.126 0 .963.913.963 2.04v10.51c0 1.126.085 2.04-1.041 2.04H1.974c-1.126 0-.966-.914-.966-2.04V11.04Z"
|
|
2644
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2645
|
+
fill: "#FDE2E2",
|
|
2646
|
+
d: "M1.974 23.59h20.133c.627 0 .885-.509.885-1.136 0-.195-.05-.387-.146-.556l-4.882-8.662a2.04 2.04 0 0 0-1.777-1.038H8.245a2.04 2.04 0 0 0-1.75.992l-5.35 8.937a.966.966 0 0 0-.137.496c0 .534.157.966.966.966Z"
|
|
2647
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2648
|
+
fill: "#FFF7F7",
|
|
2649
|
+
d: "M2 3.2c0-.22.18-.4.4-.4h19.2c.22 0 .4.18.4.4v15.4a.4.4 0 0 1-.4.4H2.4a.4.4 0 0 1-.4-.4V3.2Z"
|
|
2650
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2651
|
+
fill: "#FF5678",
|
|
2652
|
+
fillRule: "evenodd",
|
|
2653
|
+
d: "M11.675 10.8a.671.671 0 0 0 .742 0c.716-.474 2.276-1.604 2.947-2.868.886-1.668-.154-3.332-1.529-3.332a1.82 1.82 0 0 0-1.516.761.338.338 0 0 1-.546 0 1.82 1.82 0 0 0-1.516-.761c-1.374 0-2.414 1.664-1.529 3.332.672 1.264 2.232 2.394 2.947 2.867Z",
|
|
2654
|
+
clipRule: "evenodd"
|
|
2655
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2656
|
+
fill: "#FFD5D5",
|
|
2657
|
+
d: "M22.992 21.55V11.04c0-1.127.163-2.04-.963-2.04h-.633a.4.4 0 0 0-.316.155L17.8 13.4H6.6L3.12 9.147A.4.4 0 0 0 2.81 9h-.836c-1.126 0-.966.913-.966 2.04v10.51c0 1.126-.16 2.04.966 2.04H21.95c1.126 0 1.04-.914 1.04-2.04Z"
|
|
2658
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2659
|
+
fill: "#FFDFDF",
|
|
2660
|
+
d: "M1.966 23.591H22.1c.626 0 .884-.508.884-1.134 0-.195-.05-.387-.146-.557l-4.882-8.662a2.04 2.04 0 0 0-1.777-1.038H8.237a2.04 2.04 0 0 0-1.75.992l-5.35 8.937a.966.966 0 0 0-.137.496c0 .534.157.966.966.966Z"
|
|
2661
|
+
}));
|
|
2662
|
+
|
|
2601
2663
|
const SvgLineThree = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2602
2664
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2603
2665
|
width: "1em",
|
|
@@ -3176,6 +3238,74 @@ const SvgPaperCheck = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
3176
3238
|
d: "M15.766 16.327H31.44V32H15.766z"
|
|
3177
3239
|
}))));
|
|
3178
3240
|
|
|
3241
|
+
const SvgPaperPen = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3242
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3243
|
+
width: "1em",
|
|
3244
|
+
height: "1em",
|
|
3245
|
+
fill: "none",
|
|
3246
|
+
viewBox: "0 0 24 24"
|
|
3247
|
+
}, props), /*#__PURE__*/React__namespace.createElement("g", {
|
|
3248
|
+
fill: "currentColor",
|
|
3249
|
+
clipPath: "url(#paper_pen_svg__a)"
|
|
3250
|
+
}, /*#__PURE__*/React__namespace.createElement("rect", {
|
|
3251
|
+
width: 16.457,
|
|
3252
|
+
height: 20.197,
|
|
3253
|
+
x: 3.5,
|
|
3254
|
+
y: 1.645,
|
|
3255
|
+
opacity: 0.6,
|
|
3256
|
+
rx: 1.175
|
|
3257
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3258
|
+
fillRule: "evenodd",
|
|
3259
|
+
d: "m19.205 11.89-4.239 4.239-.578 2.156-.38 1.42a.235.235 0 0 0 .287.287l1.42-.38 2.156-.579 4.24-4.238-2.906-2.905Zm4.658.491-2.244-2.244a.466.466 0 0 0-.66 0L19.8 11.294l2.906 2.906 1.157-1.158a.469.469 0 0 0 0-.661Z",
|
|
3260
|
+
clipRule: "evenodd"
|
|
3261
|
+
})), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
3262
|
+
id: "paper_pen_svg__a"
|
|
3263
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
3264
|
+
fill: "#fff",
|
|
3265
|
+
d: "M0 0h24v24H0z"
|
|
3266
|
+
}))));
|
|
3267
|
+
|
|
3268
|
+
const SvgPaperPenColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3269
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3270
|
+
width: "1em",
|
|
3271
|
+
height: "1em",
|
|
3272
|
+
fill: "none",
|
|
3273
|
+
viewBox: "0 0 24 24"
|
|
3274
|
+
}, props), /*#__PURE__*/React__namespace.createElement("g", {
|
|
3275
|
+
clipPath: "url(#paper_pen_color_svg__a)"
|
|
3276
|
+
}, /*#__PURE__*/React__namespace.createElement("rect", {
|
|
3277
|
+
width: 16.457,
|
|
3278
|
+
height: 20.197,
|
|
3279
|
+
x: 3.5,
|
|
3280
|
+
y: 1.645,
|
|
3281
|
+
fill: "#C6D8FA",
|
|
3282
|
+
rx: 1.175
|
|
3283
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3284
|
+
fill: "#6D99F1",
|
|
3285
|
+
fillRule: "evenodd",
|
|
3286
|
+
d: "m19.205 11.89-4.239 4.239-.578 2.156-.38 1.42a.235.235 0 0 0 .287.287l1.42-.38 2.156-.579 4.24-4.238-2.906-2.905Zm4.658.491-2.244-2.244a.466.466 0 0 0-.66 0L19.8 11.294l2.906 2.906 1.157-1.158a.469.469 0 0 0 0-.661Z",
|
|
3287
|
+
clipRule: "evenodd"
|
|
3288
|
+
})), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
3289
|
+
id: "paper_pen_color_svg__a"
|
|
3290
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
3291
|
+
fill: "#fff",
|
|
3292
|
+
d: "M0 0h24v24H0z"
|
|
3293
|
+
}))));
|
|
3294
|
+
|
|
3295
|
+
const SvgPaperTwo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3296
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3297
|
+
width: "1em",
|
|
3298
|
+
height: "1em",
|
|
3299
|
+
fill: "none",
|
|
3300
|
+
viewBox: "0 0 24 24"
|
|
3301
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3302
|
+
fill: "currentColor",
|
|
3303
|
+
d: "M8.1 1.5A1.5 1.5 0 0 0 6.6 3v1.41H17.2a1.5 1.5 0 0 1 1.5 1.5v12.467h1.4a1.5 1.5 0 0 0 1.5-1.5V3a1.5 1.5 0 0 0-1.5-1.5H8.1Z"
|
|
3304
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3305
|
+
fill: "currentColor",
|
|
3306
|
+
d: "M2.5 7.123a1.5 1.5 0 0 1 1.5-1.5h12.001a1.5 1.5 0 0 1 1.5 1.5V21a1.5 1.5 0 0 1-1.5 1.5h-12A1.5 1.5 0 0 1 2.5 21V7.123Z"
|
|
3307
|
+
}));
|
|
3308
|
+
|
|
3179
3309
|
const SvgPause = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3180
3310
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3181
3311
|
width: "1em",
|
|
@@ -4517,7 +4647,9 @@ var icons = /*#__PURE__*/Object.freeze({
|
|
|
4517
4647
|
KorIcon: SvgKor,
|
|
4518
4648
|
LeagueIcon: SvgLeague,
|
|
4519
4649
|
LetterCrownColorIcon: SvgLetterCrownColor,
|
|
4650
|
+
LetterCrownOpenColorIcon: SvgLetterCrownOpenColor,
|
|
4520
4651
|
LetterHeartColorIcon: SvgLetterHeartColor,
|
|
4652
|
+
LetterHeartOpenColorIcon: SvgLetterHeartOpenColor,
|
|
4521
4653
|
LetterIcon: SvgLetter,
|
|
4522
4654
|
LineThreeIcon: SvgLineThree,
|
|
4523
4655
|
LinkIcon: SvgLink,
|
|
@@ -4554,6 +4686,9 @@ var icons = /*#__PURE__*/Object.freeze({
|
|
|
4554
4686
|
OutIcon: SvgOut,
|
|
4555
4687
|
PalmTreeColorIcon: SvgPalmTreeColor,
|
|
4556
4688
|
PaperCheckIcon: SvgPaperCheck,
|
|
4689
|
+
PaperPenColorIcon: SvgPaperPenColor,
|
|
4690
|
+
PaperPenIcon: SvgPaperPen,
|
|
4691
|
+
PaperTwoIcon: SvgPaperTwo,
|
|
4557
4692
|
PauseIcon: SvgPause,
|
|
4558
4693
|
PenIcon: SvgPen,
|
|
4559
4694
|
PercentInCircleIcon: SvgPercentInCircle,
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgLetterCrownOpenColor = 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: "#FFE8A1",
|
|
12
|
+
d: "M22.256 10.696H1.804A.804.804 0 0 1 1.27 9.29L10.696.915a2.04 2.04 0 0 1 2.718.008l9.303 8.367c.17.153.267.37.267.6 0 .445-.282.806-.728.806Z"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fill: "#FCDDDD",
|
|
15
|
+
d: "M1.008 11.04c0-1.127-.16-2.04.966-2.04h20.055c1.126 0 .963.913.963 2.04v10.51c0 1.126.085 2.04-1.041 2.04H1.974c-1.126 0-.966-.914-.966-2.04V11.04Z"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
fill: "#FDE2E2",
|
|
18
|
+
d: "M1.974 23.59h20.133c.627 0 .885-.509.885-1.136 0-.195-.05-.387-.146-.556l-4.882-8.662a2.04 2.04 0 0 0-1.777-1.038H8.245a2.04 2.04 0 0 0-1.75.992l-5.35 8.937a.966.966 0 0 0-.137.496c0 .534.157.966.966.966Z"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
fill: "#FFF9E8",
|
|
21
|
+
d: "M2 3.2c0-.22.18-.4.4-.4h19.2c.22 0 .4.18.4.4v15.4a.4.4 0 0 1-.4.4H2.4a.4.4 0 0 1-.4-.4V3.2Z"
|
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
fill: "#FFCD39",
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
d: "M9.16 10.657a.384.384 0 0 1-.377-.346l-.48-4.261c-.043-.382.42-.592.664-.301l1.425 1.691 1.053-2.303a.563.563 0 0 1 1.031 0L13.53 7.44l1.424-1.691c.245-.29.708-.081.665.301l-.48 4.26a.384.384 0 0 1-.378.347h-5.6Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
fill: "#FFE8A1",
|
|
29
|
+
d: "M22.992 21.55V11.04c0-1.127.163-2.04-.963-2.04h-.633a.4.4 0 0 0-.316.155L17.8 13.4H6.6L3.12 9.147A.4.4 0 0 0 2.81 9h-.836c-1.126 0-.966.913-.966 2.04v10.51c0 1.126-.16 2.04.966 2.04H21.95c1.126 0 1.04-.914 1.04-2.04Z"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
fill: "#FFEFC0",
|
|
32
|
+
d: "M1.966 23.591H22.1c.626 0 .884-.508.884-1.134 0-.195-.05-.387-.146-.557l-4.882-8.662a2.04 2.04 0 0 0-1.777-1.038H8.237a2.04 2.04 0 0 0-1.75.992l-5.35 8.937a.966.966 0 0 0-.137.496c0 .534.157.966.966.966Z"
|
|
33
|
+
}));
|
|
34
|
+
|
|
35
|
+
export { SvgLetterCrownOpenColor as default };
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgLetterHeartOpenColor = 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: "#FFD5D5",
|
|
12
|
+
d: "M22.256 10.696H1.804A.804.804 0 0 1 1.27 9.29L10.696.915a2.04 2.04 0 0 1 2.718.008l9.303 8.367c.17.153.267.37.267.6 0 .445-.282.806-.728.806Z"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fill: "#FCDDDD",
|
|
15
|
+
d: "M1.008 11.04c0-1.127-.16-2.04.966-2.04h20.055c1.126 0 .963.913.963 2.04v10.51c0 1.126.085 2.04-1.041 2.04H1.974c-1.126 0-.966-.914-.966-2.04V11.04Z"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
fill: "#FDE2E2",
|
|
18
|
+
d: "M1.974 23.59h20.133c.627 0 .885-.509.885-1.136 0-.195-.05-.387-.146-.556l-4.882-8.662a2.04 2.04 0 0 0-1.777-1.038H8.245a2.04 2.04 0 0 0-1.75.992l-5.35 8.937a.966.966 0 0 0-.137.496c0 .534.157.966.966.966Z"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
fill: "#FFF7F7",
|
|
21
|
+
d: "M2 3.2c0-.22.18-.4.4-.4h19.2c.22 0 .4.18.4.4v15.4a.4.4 0 0 1-.4.4H2.4a.4.4 0 0 1-.4-.4V3.2Z"
|
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
23
|
+
fill: "#FF5678",
|
|
24
|
+
fillRule: "evenodd",
|
|
25
|
+
d: "M11.675 10.8a.671.671 0 0 0 .742 0c.716-.474 2.276-1.604 2.947-2.868.886-1.668-.154-3.332-1.529-3.332a1.82 1.82 0 0 0-1.516.761.338.338 0 0 1-.546 0 1.82 1.82 0 0 0-1.516-.761c-1.374 0-2.414 1.664-1.529 3.332.672 1.264 2.232 2.394 2.947 2.867Z",
|
|
26
|
+
clipRule: "evenodd"
|
|
27
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
fill: "#FFD5D5",
|
|
29
|
+
d: "M22.992 21.55V11.04c0-1.127.163-2.04-.963-2.04h-.633a.4.4 0 0 0-.316.155L17.8 13.4H6.6L3.12 9.147A.4.4 0 0 0 2.81 9h-.836c-1.126 0-.966.913-.966 2.04v10.51c0 1.126-.16 2.04.966 2.04H21.95c1.126 0 1.04-.914 1.04-2.04Z"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
fill: "#FFDFDF",
|
|
32
|
+
d: "M1.966 23.591H22.1c.626 0 .884-.508.884-1.134 0-.195-.05-.387-.146-.557l-4.882-8.662a2.04 2.04 0 0 0-1.777-1.038H8.237a2.04 2.04 0 0 0-1.75.992l-5.35 8.937a.966.966 0 0 0-.137.496c0 .534.157.966.966.966Z"
|
|
33
|
+
}));
|
|
34
|
+
|
|
35
|
+
export { SvgLetterHeartOpenColor as default };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgPaperPen = 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
|
+
fill: "currentColor",
|
|
12
|
+
clipPath: "url(#paper_pen_svg__a)"
|
|
13
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
14
|
+
width: 16.457,
|
|
15
|
+
height: 20.197,
|
|
16
|
+
x: 3.5,
|
|
17
|
+
y: 1.645,
|
|
18
|
+
opacity: 0.6,
|
|
19
|
+
rx: 1.175
|
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
d: "m19.205 11.89-4.239 4.239-.578 2.156-.38 1.42a.235.235 0 0 0 .287.287l1.42-.38 2.156-.579 4.24-4.238-2.906-2.905Zm4.658.491-2.244-2.244a.466.466 0 0 0-.66 0L19.8 11.294l2.906 2.906 1.157-1.158a.469.469 0 0 0 0-.661Z",
|
|
23
|
+
clipRule: "evenodd"
|
|
24
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
25
|
+
id: "paper_pen_svg__a"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fill: "#fff",
|
|
28
|
+
d: "M0 0h24v24H0z"
|
|
29
|
+
}))));
|
|
30
|
+
|
|
31
|
+
export { SvgPaperPen as default };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgPaperPenColor = 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
|
+
clipPath: "url(#paper_pen_color_svg__a)"
|
|
12
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
13
|
+
width: 16.457,
|
|
14
|
+
height: 20.197,
|
|
15
|
+
x: 3.5,
|
|
16
|
+
y: 1.645,
|
|
17
|
+
fill: "#C6D8FA",
|
|
18
|
+
rx: 1.175
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
fill: "#6D99F1",
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
d: "m19.205 11.89-4.239 4.239-.578 2.156-.38 1.42a.235.235 0 0 0 .287.287l1.42-.38 2.156-.579 4.24-4.238-2.906-2.905Zm4.658.491-2.244-2.244a.466.466 0 0 0-.66 0L19.8 11.294l2.906 2.906 1.157-1.158a.469.469 0 0 0 0-.661Z",
|
|
23
|
+
clipRule: "evenodd"
|
|
24
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
25
|
+
id: "paper_pen_color_svg__a"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fill: "#fff",
|
|
28
|
+
d: "M0 0h24v24H0z"
|
|
29
|
+
}))));
|
|
30
|
+
|
|
31
|
+
export { SvgPaperPenColor as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgPaperTwo = 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
|
+
d: "M8.1 1.5A1.5 1.5 0 0 0 6.6 3v1.41H17.2a1.5 1.5 0 0 1 1.5 1.5v12.467h1.4a1.5 1.5 0 0 0 1.5-1.5V3a1.5 1.5 0 0 0-1.5-1.5H8.1Z"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
d: "M2.5 7.123a1.5 1.5 0 0 1 1.5-1.5h12.001a1.5 1.5 0 0 1 1.5 1.5V21a1.5 1.5 0 0 1-1.5 1.5h-12A1.5 1.5 0 0 1 2.5 21V7.123Z"
|
|
16
|
+
}));
|
|
17
|
+
|
|
18
|
+
export { SvgPaperTwo as default };
|
|
@@ -97,7 +97,9 @@ export { default as KorIcon } from './Kor.js';
|
|
|
97
97
|
export { default as LeagueIcon } from './League.js';
|
|
98
98
|
export { default as LetterIcon } from './Letter.js';
|
|
99
99
|
export { default as LetterCrownColorIcon } from './LetterCrownColor.js';
|
|
100
|
+
export { default as LetterCrownOpenColorIcon } from './LetterCrownOpenColor.js';
|
|
100
101
|
export { default as LetterHeartColorIcon } from './LetterHeartColor.js';
|
|
102
|
+
export { default as LetterHeartOpenColorIcon } from './LetterHeartOpenColor.js';
|
|
101
103
|
export { default as LineThreeIcon } from './LineThree.js';
|
|
102
104
|
export { default as LinkIcon } from './Link.js';
|
|
103
105
|
export { default as LockIcon } from './Lock.js';
|
|
@@ -133,6 +135,9 @@ export { default as NumberTwoOutlinedIcon } from './NumberTwoOutlined.js';
|
|
|
133
135
|
export { default as OutIcon } from './Out.js';
|
|
134
136
|
export { default as PalmTreeColorIcon } from './PalmTreeColor.js';
|
|
135
137
|
export { default as PaperCheckIcon } from './PaperCheck.js';
|
|
138
|
+
export { default as PaperPenIcon } from './PaperPen.js';
|
|
139
|
+
export { default as PaperPenColorIcon } from './PaperPenColor.js';
|
|
140
|
+
export { default as PaperTwoIcon } from './PaperTwo.js';
|
|
136
141
|
export { default as PauseIcon } from './Pause.js';
|
|
137
142
|
export { default as PenIcon } from './Pen.js';
|
|
138
143
|
export { default as PercentInCircleIcon } from './PercentInCircle.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.21.
|
|
3
|
+
"version": "2.21.15",
|
|
4
4
|
"description": "React components, hooks for create teamturing web application",
|
|
5
5
|
"author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
|
|
6
6
|
"homepage": "https://github.com/weareteamturing/bombe#readme",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@floating-ui/react-dom": "^2.0.2",
|
|
57
57
|
"@primer/behaviors": "^1.3.6",
|
|
58
|
-
"@teamturing/icons": "^1.
|
|
58
|
+
"@teamturing/icons": "^1.31.0",
|
|
59
59
|
"@teamturing/token-studio": "^1.2.2",
|
|
60
60
|
"@teamturing/utils": "^1.2.0",
|
|
61
61
|
"framer-motion": "^10.16.4",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"react-textarea-autosize": "^8.5.3",
|
|
67
67
|
"styled-system": "^5.1.5"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "17069fee92aa729734b336cd7bf6b2f844092a91"
|
|
70
70
|
}
|