@teamturing/react-kit 2.44.4 → 2.44.5

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
@@ -2579,6 +2579,17 @@ const SvgFireColor = props => /*#__PURE__*/React__namespace.createElement("svg",
2579
2579
  clipRule: "evenodd"
2580
2580
  }));
2581
2581
 
2582
+ const SvgFlag = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2583
+ xmlns: "http://www.w3.org/2000/svg",
2584
+ width: "1em",
2585
+ height: "1em",
2586
+ fill: "none",
2587
+ viewBox: "0 0 24 24"
2588
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
2589
+ fill: "currentColor",
2590
+ d: "M5.611.747c.717 0 1.237.583 1.239 1.3v.621l.468.044c2.639.243 4.067.727 6.36 2.174s3.654 2.624 6.038 3.196l1.585.324c.459.087.65.608.096 1.042 0 0-1.111 1.151-2.596 1.84-1.485.687-2.795 1.184-5.123 1.01-2.328-.172-3.58-.022-4.957.592l-1.854.834.014 8.243c.001.71-.55 1.285-1.26 1.286-.713 0-1.319-.578-1.32-1.291L4.27 2.027C4.269 1.32 4.904.747 5.61.747Z"
2591
+ }));
2592
+
2582
2593
  const SvgFolder = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2583
2594
  xmlns: "http://www.w3.org/2000/svg",
2584
2595
  width: "1em",
@@ -4985,6 +4996,7 @@ var icons = /*#__PURE__*/Object.freeze({
4985
4996
  FindIcon: SvgFind,
4986
4997
  FireColorIcon: SvgFireColor,
4987
4998
  FireIcon: SvgFire,
4999
+ FlagIcon: SvgFlag,
4988
5000
  FolderIcon: SvgFolder,
4989
5001
  FrameIcon: SvgFrame,
4990
5002
  GlassesIcon: SvgGlasses,
@@ -0,0 +1,15 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgFlag = 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: "M5.611.747c.717 0 1.237.583 1.239 1.3v.621l.468.044c2.639.243 4.067.727 6.36 2.174s3.654 2.624 6.038 3.196l1.585.324c.459.087.65.608.096 1.042 0 0-1.111 1.151-2.596 1.84-1.485.687-2.795 1.184-5.123 1.01-2.328-.172-3.58-.022-4.957.592l-1.854.834.014 8.243c.001.71-.55 1.285-1.26 1.286-.713 0-1.319-.578-1.32-1.291L4.27 2.027C4.269 1.32 4.904.747 5.61.747Z"
13
+ }));
14
+
15
+ export { SvgFlag as default };
@@ -93,6 +93,7 @@ export { default as FilterIcon } from './Filter.js';
93
93
  export { default as FindIcon } from './Find.js';
94
94
  export { default as FireIcon } from './Fire.js';
95
95
  export { default as FireColorIcon } from './FireColor.js';
96
+ export { default as FlagIcon } from './Flag.js';
96
97
  export { default as FolderIcon } from './Folder.js';
97
98
  export { default as FrameIcon } from './Frame.js';
98
99
  export { default as GlassesIcon } from './Glasses.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/react-kit",
3
- "version": "2.44.4",
3
+ "version": "2.44.5",
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.52.0",
58
+ "@teamturing/icons": "^1.53.0",
59
59
  "@teamturing/token-studio": "^1.12.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": "aff0367741217c45cca751d63865dcf8c002b988"
69
+ "gitHead": "d42c94799653f9cf9abd165dd9f20d90c8ca1e4d"
70
70
  }