@teamturing/react-kit 2.21.15 → 2.21.16

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
@@ -2175,6 +2175,19 @@ const SvgEng = props => /*#__PURE__*/React__namespace.createElement("svg", _exte
2175
2175
  d: "M8.431 17.573c.516 0 .971-.335 1.125-.827l.582-1.866h4.04l.583 1.87a1.172 1.172 0 1 0 2.23-.716l-2.879-8.72a2.06 2.06 0 0 0-3.91-.003l-2.889 8.713a1.178 1.178 0 0 0 1.118 1.549Zm2.293-4.58 1.395-4.465h.077l1.395 4.466h-2.867Z"
2176
2176
  }));
2177
2177
 
2178
+ const SvgEnter = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2179
+ xmlns: "http://www.w3.org/2000/svg",
2180
+ width: "1em",
2181
+ height: "1em",
2182
+ fill: "none",
2183
+ viewBox: "0 0 24 24"
2184
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
2185
+ fill: "currentColor",
2186
+ fillRule: "evenodd",
2187
+ d: "M5.657 4.286A2.914 2.914 0 0 1 8.572 1.37H18a2.914 2.914 0 0 1 2.914 2.915v15.428A2.914 2.914 0 0 1 18 22.63H8.572a2.914 2.914 0 0 1-2.915-2.915v-2.143a1.2 1.2 0 0 1 2.4 0v2.143c0 .284.23.515.515.515H18c.284 0 .514-.23.514-.515V4.286A.514.514 0 0 0 18 3.77H8.572a.514.514 0 0 0-.515.515v2.143a1.2 1.2 0 0 1-2.4 0V4.286ZM2.23 12.429a1.2 1.2 0 0 1 1.2-1.2h6.82l-.874-1.02a1.2 1.2 0 1 1 1.822-1.561l2.571 3a1.2 1.2 0 0 1 0 1.562l-2.571 3a1.2 1.2 0 1 1-1.822-1.562l.873-1.02h-6.82a1.2 1.2 0 0 1-1.2-1.2Z",
2188
+ clipRule: "evenodd"
2189
+ }));
2190
+
2178
2191
  const SvgEqual = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2179
2192
  xmlns: "http://www.w3.org/2000/svg",
2180
2193
  width: "1em",
@@ -4619,6 +4632,7 @@ var icons = /*#__PURE__*/Object.freeze({
4619
4632
  EmojiPlusDashIcon: SvgEmojiPlusDash,
4620
4633
  EmojiPlusIcon: SvgEmojiPlus,
4621
4634
  EngIcon: SvgEng,
4635
+ EnterIcon: SvgEnter,
4622
4636
  EqualIcon: SvgEqual,
4623
4637
  EraserIcon: SvgEraser,
4624
4638
  ExclamationPointInCircleIcon: SvgExclamationPointInCircle,
@@ -0,0 +1,17 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgEnter = 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.657 4.286A2.914 2.914 0 0 1 8.572 1.37H18a2.914 2.914 0 0 1 2.914 2.915v15.428A2.914 2.914 0 0 1 18 22.63H8.572a2.914 2.914 0 0 1-2.915-2.915v-2.143a1.2 1.2 0 0 1 2.4 0v2.143c0 .284.23.515.515.515H18c.284 0 .514-.23.514-.515V4.286A.514.514 0 0 0 18 3.77H8.572a.514.514 0 0 0-.515.515v2.143a1.2 1.2 0 0 1-2.4 0V4.286ZM2.23 12.429a1.2 1.2 0 0 1 1.2-1.2h6.82l-.874-1.02a1.2 1.2 0 1 1 1.822-1.561l2.571 3a1.2 1.2 0 0 1 0 1.562l-2.571 3a1.2 1.2 0 1 1-1.822-1.562l.873-1.02h-6.82a1.2 1.2 0 0 1-1.2-1.2Z",
14
+ clipRule: "evenodd"
15
+ }));
16
+
17
+ export { SvgEnter as default };
@@ -68,6 +68,7 @@ export { default as EmojiIcon } from './Emoji.js';
68
68
  export { default as EmojiPlusIcon } from './EmojiPlus.js';
69
69
  export { default as EmojiPlusDashIcon } from './EmojiPlusDash.js';
70
70
  export { default as EngIcon } from './Eng.js';
71
+ export { default as EnterIcon } from './Enter.js';
71
72
  export { default as EqualIcon } from './Equal.js';
72
73
  export { default as EraserIcon } from './Eraser.js';
73
74
  export { default as ExclamationPointInCircleIcon } from './ExclamationPointInCircle.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/react-kit",
3
- "version": "2.21.15",
3
+ "version": "2.21.16",
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.31.0",
58
+ "@teamturing/icons": "^1.32.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": "17069fee92aa729734b336cd7bf6b2f844092a91"
69
+ "gitHead": "44f9f5f09e10e1c7f3ea09bd12a7bdebbc83542c"
70
70
  }