@teamturing/react-kit 2.43.2 → 2.43.3

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 CHANGED
@@ -4579,6 +4579,50 @@ const SvgTwinkle = props => /*#__PURE__*/React__namespace.createElement("svg", _
4579
4579
  d: "M19.42 18.696a.807.807 0 0 1 .36-.36l2.084-1.043a.808.808 0 0 0 0-1.444l-2.084-1.042a.808.808 0 0 1-.36-.361l-1.043-2.084a.808.808 0 0 0-1.444 0l-1.042 2.084a.808.808 0 0 1-.361.361l-2.083 1.042a.808.808 0 0 0 0 1.444l2.083 1.042a.807.807 0 0 1 .361.361l1.042 2.084a.808.808 0 0 0 1.445 0l1.041-2.084ZM10.877 11.81a.808.808 0 0 1 .36-.362l3.35-1.674a.808.808 0 0 0 0-1.445l-3.35-1.674a.808.808 0 0 1-.36-.362L9.202 2.945a.808.808 0 0 0-1.444 0L6.083 6.293a.808.808 0 0 1-.361.362L2.373 8.329a.808.808 0 0 0 0 1.445l3.349 1.674a.807.807 0 0 1 .361.361l1.675 3.349a.808.808 0 0 0 1.444 0l1.675-3.349Z"
4580
4580
  }));
4581
4581
 
4582
+ const SvgTwinkleColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
4583
+ xmlns: "http://www.w3.org/2000/svg",
4584
+ width: "1em",
4585
+ height: "1em",
4586
+ fill: "none",
4587
+ viewBox: "0 0 24 24"
4588
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
4589
+ fill: "url(#twinkle_color_svg__a)",
4590
+ d: "M19.42 18.696a.808.808 0 0 1 .36-.36l2.084-1.043a.808.808 0 0 0 0-1.444l-2.084-1.042a.808.808 0 0 1-.36-.361l-1.043-2.084a.808.808 0 0 0-1.444 0l-1.042 2.084a.807.807 0 0 1-.361.361l-2.084 1.042a.808.808 0 0 0 0 1.444l2.084 1.042a.807.807 0 0 1 .361.361l1.042 2.084a.808.808 0 0 0 1.445 0l1.041-2.084Z"
4591
+ }), /*#__PURE__*/React__namespace.createElement("path", {
4592
+ fill: "url(#twinkle_color_svg__b)",
4593
+ d: "M10.877 11.81a.807.807 0 0 1 .36-.362l3.35-1.674a.808.808 0 0 0 0-1.445l-3.35-1.674a.807.807 0 0 1-.36-.362L9.202 2.945a.808.808 0 0 0-1.445 0L6.083 6.293a.808.808 0 0 1-.361.362L2.373 8.329a.808.808 0 0 0 0 1.445l3.349 1.674a.807.807 0 0 1 .361.361l1.674 3.349a.808.808 0 0 0 1.445 0l1.675-3.349Z"
4594
+ }), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("linearGradient", {
4595
+ id: "twinkle_color_svg__a",
4596
+ x1: 1.927,
4597
+ x2: 24.244,
4598
+ y1: 2.498,
4599
+ y2: 5.143,
4600
+ gradientUnits: "userSpaceOnUse"
4601
+ }, /*#__PURE__*/React__namespace.createElement("stop", {
4602
+ stopColor: "#FF6DEB"
4603
+ }), /*#__PURE__*/React__namespace.createElement("stop", {
4604
+ offset: 0.5,
4605
+ stopColor: "#8E6EF1"
4606
+ }), /*#__PURE__*/React__namespace.createElement("stop", {
4607
+ offset: 1,
4608
+ stopColor: "#5F9EFF"
4609
+ })), /*#__PURE__*/React__namespace.createElement("linearGradient", {
4610
+ id: "twinkle_color_svg__b",
4611
+ x1: 1.927,
4612
+ x2: 24.244,
4613
+ y1: 2.498,
4614
+ y2: 5.143,
4615
+ gradientUnits: "userSpaceOnUse"
4616
+ }, /*#__PURE__*/React__namespace.createElement("stop", {
4617
+ stopColor: "#FF6DEB"
4618
+ }), /*#__PURE__*/React__namespace.createElement("stop", {
4619
+ offset: 0.5,
4620
+ stopColor: "#8E6EF1"
4621
+ }), /*#__PURE__*/React__namespace.createElement("stop", {
4622
+ offset: 1,
4623
+ stopColor: "#5F9EFF"
4624
+ }))));
4625
+
4582
4626
  const SvgUndo = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
4583
4627
  xmlns: "http://www.w3.org/2000/svg",
4584
4628
  width: "1em",
@@ -5047,6 +5091,7 @@ var icons = /*#__PURE__*/Object.freeze({
5047
5091
  TrashIcon: SvgTrash,
5048
5092
  TreasureboxIcon: SvgTreasurebox,
5049
5093
  TrophyIcon: SvgTrophy,
5094
+ TwinkleColorIcon: SvgTwinkleColor,
5050
5095
  TwinkleIcon: SvgTwinkle,
5051
5096
  UndoIcon: SvgUndo,
5052
5097
  UniversityIcon: SvgUniversity,
@@ -0,0 +1,48 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgTwinkleColor = 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: "url(#twinkle_color_svg__a)",
12
+ d: "M19.42 18.696a.808.808 0 0 1 .36-.36l2.084-1.043a.808.808 0 0 0 0-1.444l-2.084-1.042a.808.808 0 0 1-.36-.361l-1.043-2.084a.808.808 0 0 0-1.444 0l-1.042 2.084a.807.807 0 0 1-.361.361l-2.084 1.042a.808.808 0 0 0 0 1.444l2.084 1.042a.807.807 0 0 1 .361.361l1.042 2.084a.808.808 0 0 0 1.445 0l1.041-2.084Z"
13
+ }), /*#__PURE__*/React.createElement("path", {
14
+ fill: "url(#twinkle_color_svg__b)",
15
+ d: "M10.877 11.81a.807.807 0 0 1 .36-.362l3.35-1.674a.808.808 0 0 0 0-1.445l-3.35-1.674a.807.807 0 0 1-.36-.362L9.202 2.945a.808.808 0 0 0-1.445 0L6.083 6.293a.808.808 0 0 1-.361.362L2.373 8.329a.808.808 0 0 0 0 1.445l3.349 1.674a.807.807 0 0 1 .361.361l1.674 3.349a.808.808 0 0 0 1.445 0l1.675-3.349Z"
16
+ }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
17
+ id: "twinkle_color_svg__a",
18
+ x1: 1.927,
19
+ x2: 24.244,
20
+ y1: 2.498,
21
+ y2: 5.143,
22
+ gradientUnits: "userSpaceOnUse"
23
+ }, /*#__PURE__*/React.createElement("stop", {
24
+ stopColor: "#FF6DEB"
25
+ }), /*#__PURE__*/React.createElement("stop", {
26
+ offset: 0.5,
27
+ stopColor: "#8E6EF1"
28
+ }), /*#__PURE__*/React.createElement("stop", {
29
+ offset: 1,
30
+ stopColor: "#5F9EFF"
31
+ })), /*#__PURE__*/React.createElement("linearGradient", {
32
+ id: "twinkle_color_svg__b",
33
+ x1: 1.927,
34
+ x2: 24.244,
35
+ y1: 2.498,
36
+ y2: 5.143,
37
+ gradientUnits: "userSpaceOnUse"
38
+ }, /*#__PURE__*/React.createElement("stop", {
39
+ stopColor: "#FF6DEB"
40
+ }), /*#__PURE__*/React.createElement("stop", {
41
+ offset: 0.5,
42
+ stopColor: "#8E6EF1"
43
+ }), /*#__PURE__*/React.createElement("stop", {
44
+ offset: 1,
45
+ stopColor: "#5F9EFF"
46
+ }))));
47
+
48
+ export { SvgTwinkleColor as default };
@@ -211,6 +211,7 @@ export { default as TrashIcon } from './Trash.js';
211
211
  export { default as TreasureboxIcon } from './Treasurebox.js';
212
212
  export { default as TrophyIcon } from './Trophy.js';
213
213
  export { default as TwinkleIcon } from './Twinkle.js';
214
+ export { default as TwinkleColorIcon } from './TwinkleColor.js';
214
215
  export { default as UndoIcon } from './Undo.js';
215
216
  export { default as UniversityIcon } from './University.js';
216
217
  export { default as UserBlockedIcon } from './UserBlocked.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/react-kit",
3
- "version": "2.43.2",
3
+ "version": "2.43.3",
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.50.0",
58
+ "@teamturing/icons": "^1.51.0",
59
59
  "@teamturing/token-studio": "^1.11.0",
60
60
  "@teamturing/utils": "^1.4.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": "727e8dc5c67ce7d229e27604c7962361ac554ccf"
69
+ "gitHead": "b3e2b69b99302fdaf886ca13441d1ae4cc165c81"
70
70
  }