@teamturing/react-kit 2.30.0 → 2.30.1

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
@@ -2406,6 +2406,19 @@ const SvgFilter = props => /*#__PURE__*/React__namespace.createElement("svg", _e
2406
2406
  clipRule: "evenodd"
2407
2407
  }));
2408
2408
 
2409
+ const SvgFind = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2410
+ xmlns: "http://www.w3.org/2000/svg",
2411
+ width: "1em",
2412
+ height: "1em",
2413
+ fill: "none",
2414
+ viewBox: "0 0 24 24"
2415
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
2416
+ fill: "currentColor",
2417
+ fillRule: "evenodd",
2418
+ d: "M9 9v6h6V9H9Zm-.5-2A1.5 1.5 0 0 0 7 8.5v7A1.5 1.5 0 0 0 8.5 17h7a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 15.5 7h-7ZM2 4a2 2 0 0 1 2-2h4a1 1 0 0 1 0 2H4v4a1 1 0 0 1-2 0V4ZM2 20a2 2 0 0 0 2 2h4a1 1 0 1 0 0-2H4v-4a1 1 0 1 0-2 0v4ZM22 4a2 2 0 0 0-2-2h-4a1 1 0 1 0 0 2h4v4a1 1 0 1 0 2 0V4ZM22 20a2 2 0 0 1-2 2h-4a1 1 0 1 1 0-2h4v-4a1 1 0 1 1 2 0v4Z",
2419
+ clipRule: "evenodd"
2420
+ }));
2421
+
2409
2422
  const SvgFire = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2410
2423
  xmlns: "http://www.w3.org/2000/svg",
2411
2424
  width: "1em",
@@ -4722,6 +4735,7 @@ var icons = /*#__PURE__*/Object.freeze({
4722
4735
  FacebookColorIcon: SvgFacebookColor,
4723
4736
  FacebookIcon: SvgFacebook,
4724
4737
  FilterIcon: SvgFilter,
4738
+ FindIcon: SvgFind,
4725
4739
  FireColorIcon: SvgFireColor,
4726
4740
  FireIcon: SvgFire,
4727
4741
  FolderIcon: SvgFolder,
@@ -0,0 +1,17 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgFind = 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: "M9 9v6h6V9H9Zm-.5-2A1.5 1.5 0 0 0 7 8.5v7A1.5 1.5 0 0 0 8.5 17h7a1.5 1.5 0 0 0 1.5-1.5v-7A1.5 1.5 0 0 0 15.5 7h-7ZM2 4a2 2 0 0 1 2-2h4a1 1 0 0 1 0 2H4v4a1 1 0 0 1-2 0V4ZM2 20a2 2 0 0 0 2 2h4a1 1 0 1 0 0-2H4v-4a1 1 0 1 0-2 0v4ZM22 4a2 2 0 0 0-2-2h-4a1 1 0 1 0 0 2h4v4a1 1 0 1 0 2 0V4ZM22 20a2 2 0 0 1-2 2h-4a1 1 0 1 1 0-2h4v-4a1 1 0 1 1 2 0v4Z",
14
+ clipRule: "evenodd"
15
+ }));
16
+
17
+ export { SvgFind as default };
@@ -86,6 +86,7 @@ export { default as FaceSadIcon } from './FaceSad.js';
86
86
  export { default as FacebookIcon } from './Facebook.js';
87
87
  export { default as FacebookColorIcon } from './FacebookColor.js';
88
88
  export { default as FilterIcon } from './Filter.js';
89
+ export { default as FindIcon } from './Find.js';
89
90
  export { default as FireIcon } from './Fire.js';
90
91
  export { default as FireColorIcon } from './FireColor.js';
91
92
  export { default as FolderIcon } from './Folder.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/react-kit",
3
- "version": "2.30.0",
3
+ "version": "2.30.1",
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.41.0",
58
+ "@teamturing/icons": "^1.42.0",
59
59
  "@teamturing/token-studio": "^1.7.0",
60
60
  "@teamturing/utils": "^1.3.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": "d479f2b970e8e83acae103090b2429e996699433"
69
+ "gitHead": "5d0c4cb13d0269bbfff3c6b947c48eba8281f618"
70
70
  }