@teamturing/react-kit 2.22.1 → 2.22.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
@@ -3384,6 +3384,41 @@ const SvgPicture = props => /*#__PURE__*/React__namespace.createElement("svg", _
3384
3384
  clipRule: "evenodd"
3385
3385
  }));
3386
3386
 
3387
+ const SvgPill = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
3388
+ xmlns: "http://www.w3.org/2000/svg",
3389
+ width: "1em",
3390
+ height: "1em",
3391
+ fill: "none",
3392
+ viewBox: "0 0 24 24"
3393
+ }, props), /*#__PURE__*/React__namespace.createElement("g", {
3394
+ fill: "currentColor",
3395
+ clipPath: "url(#pill_svg__a)"
3396
+ }, /*#__PURE__*/React__namespace.createElement("path", {
3397
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z",
3398
+ opacity: 0.4
3399
+ }), /*#__PURE__*/React__namespace.createElement("path", {
3400
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
3401
+ })), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
3402
+ id: "pill_svg__a"
3403
+ }, /*#__PURE__*/React__namespace.createElement("path", {
3404
+ fill: "#fff",
3405
+ d: "M0 0h24v24H0z"
3406
+ }))));
3407
+
3408
+ const SvgPillColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
3409
+ xmlns: "http://www.w3.org/2000/svg",
3410
+ width: "1em",
3411
+ height: "1em",
3412
+ fill: "none",
3413
+ viewBox: "0 0 24 24"
3414
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
3415
+ fill: "#D9CDF9",
3416
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z"
3417
+ }), /*#__PURE__*/React__namespace.createElement("path", {
3418
+ fill: "#9C7EEF",
3419
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
3420
+ }));
3421
+
3387
3422
  const SvgPin = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
3388
3423
  xmlns: "http://www.w3.org/2000/svg",
3389
3424
  width: "1em",
@@ -4712,6 +4747,8 @@ var icons = /*#__PURE__*/Object.freeze({
4712
4747
  PenIcon: SvgPen,
4713
4748
  PercentInCircleIcon: SvgPercentInCircle,
4714
4749
  PictureIcon: SvgPicture,
4750
+ PillColorIcon: SvgPillColor,
4751
+ PillIcon: SvgPill,
4715
4752
  PinColorRedIcon: SvgPinColorRed,
4716
4753
  PinIcon: SvgPin,
4717
4754
  PlayIcon: SvgPlay,
@@ -0,0 +1,25 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgPill = 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("g", {
11
+ fill: "currentColor",
12
+ clipPath: "url(#pill_svg__a)"
13
+ }, /*#__PURE__*/React.createElement("path", {
14
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z",
15
+ opacity: 0.4
16
+ }), /*#__PURE__*/React.createElement("path", {
17
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
18
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
19
+ id: "pill_svg__a"
20
+ }, /*#__PURE__*/React.createElement("path", {
21
+ fill: "#fff",
22
+ d: "M0 0h24v24H0z"
23
+ }))));
24
+
25
+ export { SvgPill as default };
@@ -0,0 +1,18 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgPillColor = 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: "#D9CDF9",
12
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z"
13
+ }), /*#__PURE__*/React.createElement("path", {
14
+ fill: "#9C7EEF",
15
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
16
+ }));
17
+
18
+ export { SvgPillColor as default };
@@ -144,6 +144,8 @@ export { default as PauseIcon } from './Pause.js';
144
144
  export { default as PenIcon } from './Pen.js';
145
145
  export { default as PercentInCircleIcon } from './PercentInCircle.js';
146
146
  export { default as PictureIcon } from './Picture.js';
147
+ export { default as PillIcon } from './Pill.js';
148
+ export { default as PillColorIcon } from './PillColor.js';
147
149
  export { default as PinIcon } from './Pin.js';
148
150
  export { default as PinColorRedIcon } from './PinColorRed.js';
149
151
  export { default as PlayIcon } from './Play.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/react-kit",
3
- "version": "2.22.1",
3
+ "version": "2.22.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,9 +55,9 @@
55
55
  "dependencies": {
56
56
  "@floating-ui/react-dom": "^2.0.2",
57
57
  "@primer/behaviors": "^1.3.6",
58
- "@teamturing/icons": "^1.35.2",
58
+ "@teamturing/icons": "^1.36.0",
59
59
  "@teamturing/token-studio": "^1.3.0",
60
- "@teamturing/utils": "^1.2.0",
60
+ "@teamturing/utils": "^1.2.1",
61
61
  "framer-motion": "^10.16.4",
62
62
  "lodash.debounce": "^4.0.8",
63
63
  "lodash.throttle": "^4.1.1",
@@ -66,5 +66,5 @@
66
66
  "react-textarea-autosize": "^8.5.3",
67
67
  "styled-system": "^5.1.5"
68
68
  },
69
- "gitHead": "4bfbcc65e4193aabb637d9279d8d724ebffd8570"
69
+ "gitHead": "8954829533862df7f2899b1f9bc80d689b5afab8"
70
70
  }