@teamturing/react-kit 2.21.10 → 2.21.11

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
@@ -3872,6 +3872,23 @@ const SvgStar = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
3872
3872
  clipRule: "evenodd"
3873
3873
  }));
3874
3874
 
3875
+ const SvgStarColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
3876
+ xmlns: "http://www.w3.org/2000/svg",
3877
+ width: "1em",
3878
+ height: "1em",
3879
+ fill: "none",
3880
+ viewBox: "0 0 20 20"
3881
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
3882
+ fill: "#9C7EEF",
3883
+ fillRule: "evenodd",
3884
+ d: "m10.961 1.847 1.94 3.93c.155.316.457.535.806.585l4.336.63a1.071 1.071 0 0 1 .593 1.828L15.5 11.878a1.073 1.073 0 0 0-.309.949l.741 4.318a1.071 1.071 0 0 1-1.554 1.13l-3.878-2.04a1.07 1.07 0 0 0-.997 0l-3.878 2.04a1.072 1.072 0 0 1-1.555-1.13l.74-4.318a1.073 1.073 0 0 0-.308-.949L1.364 8.82c-.636-.62-.285-1.7.594-1.828l4.335-.63c.35-.05.652-.27.807-.585l1.939-3.93a1.072 1.072 0 0 1 1.922 0Z",
3885
+ clipRule: "evenodd"
3886
+ }), /*#__PURE__*/React__namespace.createElement("path", {
3887
+ fill: "#fff",
3888
+ d: "m7.257 7.96-1.91.333a.3.3 0 0 0-.078.566l4.771 2.267a.3.3 0 0 0 .425-.319L9.59 5.323a.3.3 0 0 0-.567-.082L7.987 7.406a1 1 0 0 1-.73.554Z",
3889
+ opacity: 0.35
3890
+ }));
3891
+
3875
3892
  const SvgStore = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
3876
3893
  xmlns: "http://www.w3.org/2000/svg",
3877
3894
  width: "1em",
@@ -4542,6 +4559,7 @@ var icons = /*#__PURE__*/Object.freeze({
4542
4559
  SoundOnIcon: SvgSoundOn,
4543
4560
  SpeakerIcon: SvgSpeaker,
4544
4561
  StackupIcon: SvgStackup,
4562
+ StarColorIcon: SvgStarColor,
4545
4563
  StarIcon: SvgStar,
4546
4564
  StoreIcon: SvgStore,
4547
4565
  SyncIcon: SvgSync,
@@ -0,0 +1,21 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgStarColor = 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: "#9C7EEF",
12
+ fillRule: "evenodd",
13
+ d: "m10.961 1.847 1.94 3.93c.155.316.457.535.806.585l4.336.63a1.071 1.071 0 0 1 .593 1.828L15.5 11.878a1.073 1.073 0 0 0-.309.949l.741 4.318a1.071 1.071 0 0 1-1.554 1.13l-3.878-2.04a1.07 1.07 0 0 0-.997 0l-3.878 2.04a1.072 1.072 0 0 1-1.555-1.13l.74-4.318a1.073 1.073 0 0 0-.308-.949L1.364 8.82c-.636-.62-.285-1.7.594-1.828l4.335-.63c.35-.05.652-.27.807-.585l1.939-3.93a1.072 1.072 0 0 1 1.922 0Z",
14
+ clipRule: "evenodd"
15
+ }), /*#__PURE__*/React.createElement("path", {
16
+ fill: "#fff",
17
+ d: "m7.257 7.96-1.91.333a.3.3 0 0 0-.078.566l4.771 2.267a.3.3 0 0 0 .425-.319L9.59 5.323a.3.3 0 0 0-.567-.082L7.987 7.406a1 1 0 0 1-.73.554Z",
18
+ opacity: 0.35
19
+ }));
20
+
21
+ export { SvgStarColor as default };
@@ -170,6 +170,7 @@ export { default as SoundOnIcon } from './SoundOn.js';
170
170
  export { default as SpeakerIcon } from './Speaker.js';
171
171
  export { default as StackupIcon } from './Stackup.js';
172
172
  export { default as StarIcon } from './Star.js';
173
+ export { default as StarColorIcon } from './StarColor.js';
173
174
  export { default as StoreIcon } from './Store.js';
174
175
  export { default as SyncIcon } from './Sync.js';
175
176
  export { default as TestUploadColorIcon } from './TestUploadColor.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/react-kit",
3
- "version": "2.21.10",
3
+ "version": "2.21.11",
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.28.0",
58
+ "@teamturing/icons": "^1.29.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": "c9c6f0f3a7fee7f4bd9423ea882a49b2dab4812c"
69
+ "gitHead": "f2b76ce1012dc38f40c5d5a71f16d06883c6fddf"
70
70
  }