@teamturing/icons 1.73.1 → 1.75.0

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.
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgArrowUpCircle: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgArrowUpCircle;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgPictureFrame: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgPictureFrame;
package/dist/index.d.ts CHANGED
@@ -32,6 +32,7 @@ export { default as ArrowRightCircleIcon } from './ArrowRightCircle';
32
32
  export { default as ArrowRightLimitIcon } from './ArrowRightLimit';
33
33
  export { default as ArrowStraightIcon } from './ArrowStraight';
34
34
  export { default as ArrowUpIcon } from './ArrowUp';
35
+ export { default as ArrowUpCircleIcon } from './ArrowUpCircle';
35
36
  export { default as ArrowUpDownIcon } from './ArrowUpDown';
36
37
  export { default as ArrowUpLimitIcon } from './ArrowUpLimit';
37
38
  export { default as AtomIcon } from './Atom';
@@ -195,6 +196,7 @@ export { default as PauseIcon } from './Pause';
195
196
  export { default as PenIcon } from './Pen';
196
197
  export { default as PercentInCircleIcon } from './PercentInCircle';
197
198
  export { default as PictureIcon } from './Picture';
199
+ export { default as PictureFrameIcon } from './PictureFrame';
198
200
  export { default as PictureOffIcon } from './PictureOff';
199
201
  export { default as PillIcon } from './Pill';
200
202
  export { default as PillColorIcon } from './PillColor';
package/dist/index.js CHANGED
@@ -474,6 +474,17 @@ const SvgArrowUp = props => /*#__PURE__*/React__namespace.createElement("svg", _
474
474
  clipRule: "evenodd"
475
475
  }));
476
476
 
477
+ const SvgArrowUpCircle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
478
+ xmlns: "http://www.w3.org/2000/svg",
479
+ width: "1em",
480
+ height: "1em",
481
+ fill: "none",
482
+ viewBox: "0 0 24 24"
483
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
484
+ fill: "currentColor",
485
+ d: "M23 12c0-6.1-4.9-11-11-11S1 5.9 1 12s4.9 11 11 11 11-4.9 11-11Zm-12 4.5V9.9l-2.3 2.3c-.4.4-1 .4-1.4 0-.2-.2-.3-.5-.3-.7 0-.2.1-.5.3-.7l4-4c.4-.4 1-.4 1.4 0l4 4c.4.4.4 1 0 1.4-.4.4-1 .4-1.4 0L13 9.9v6.6c0 .6-.4 1-1 1s-1-.5-1-1Z"
486
+ }));
487
+
477
488
  const SvgArrowUpDown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
478
489
  xmlns: "http://www.w3.org/2000/svg",
479
490
  width: "1em",
@@ -1870,9 +1881,10 @@ const SvgFrame = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
1870
1881
  viewBox: "0 0 24 24"
1871
1882
  }, props), /*#__PURE__*/React__namespace.createElement("path", {
1872
1883
  fill: "currentColor",
1873
- fillRule: "evenodd",
1874
- d: "M16.566 2.83h2.154a1.882 1.882 0 1 1 2.45 2.45v2.154a1.882 1.882 0 0 1 0 3.489v2.154a1.882 1.882 0 0 1 0 3.489v2.154a1.881 1.881 0 1 1-2.45 2.45h-2.154a1.882 1.882 0 0 1-3.489 0h-2.154a1.882 1.882 0 0 1-3.489 0H5.28a1.882 1.882 0 1 1-2.45-2.45v-2.154a1.882 1.882 0 0 1 0-3.489v-2.154a1.882 1.882 0 0 1 0-3.489V5.28a1.882 1.882 0 1 1 2.45-2.45h2.154a1.882 1.882 0 0 1 3.489 0h2.154a1.882 1.882 0 0 1 3.489 0ZM6.357 5.417a.94.94 0 0 0-.94.94v11.286c0 .52.42.94.94.94h11.286a.94.94 0 0 0 .94-.94V6.357a.94.94 0 0 0-.94-.94H6.357Z",
1875
- clipRule: "evenodd"
1884
+ d: "M2 6.3a1.2 1.2 0 0 1 1.2-1.2h17.6a1.2 1.2 0 0 1 0 2.4H3.2A1.2 1.2 0 0 1 2 6.3ZM2 17.7a1.2 1.2 0 0 1 1.2-1.2h17.6a1.2 1.2 0 0 1 0 2.4H3.2A1.2 1.2 0 0 1 2 17.7Z"
1885
+ }), /*#__PURE__*/React__namespace.createElement("path", {
1886
+ fill: "currentColor",
1887
+ d: "M17.7 2a1.2 1.2 0 0 1 1.2 1.2v17.6a1.2 1.2 0 0 1-2.4 0V3.2A1.2 1.2 0 0 1 17.7 2ZM6.3 2a1.2 1.2 0 0 1 1.2 1.2v17.6a1.2 1.2 0 0 1-2.4 0V3.2A1.2 1.2 0 0 1 6.3 2Z"
1876
1888
  }));
1877
1889
 
1878
1890
  const SvgGlasses = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
@@ -3020,6 +3032,19 @@ const SvgPicture = props => /*#__PURE__*/React__namespace.createElement("svg", _
3020
3032
  clipRule: "evenodd"
3021
3033
  }));
3022
3034
 
3035
+ const SvgPictureFrame = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
3036
+ xmlns: "http://www.w3.org/2000/svg",
3037
+ width: "1em",
3038
+ height: "1em",
3039
+ fill: "none",
3040
+ viewBox: "0 0 24 24"
3041
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
3042
+ fill: "currentColor",
3043
+ fillRule: "evenodd",
3044
+ d: "M16.566 2.83h2.154a1.882 1.882 0 1 1 2.45 2.45v2.154a1.882 1.882 0 0 1 0 3.489v2.154a1.882 1.882 0 0 1 0 3.489v2.154a1.881 1.881 0 1 1-2.45 2.45h-2.154a1.882 1.882 0 0 1-3.489 0h-2.154a1.882 1.882 0 0 1-3.489 0H5.28a1.882 1.882 0 1 1-2.45-2.45v-2.154a1.882 1.882 0 0 1 0-3.489v-2.154a1.882 1.882 0 0 1 0-3.489V5.28a1.882 1.882 0 1 1 2.45-2.45h2.154a1.882 1.882 0 0 1 3.489 0h2.154a1.882 1.882 0 0 1 3.489 0ZM6.357 5.417a.94.94 0 0 0-.94.94v11.286c0 .52.42.94.94.94h11.286a.94.94 0 0 0 .94-.94V6.357a.94.94 0 0 0-.94-.94H6.357Z",
3045
+ clipRule: "evenodd"
3046
+ }));
3047
+
3023
3048
  const SvgPictureOff = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
3024
3049
  xmlns: "http://www.w3.org/2000/svg",
3025
3050
  width: "1em",
@@ -4546,6 +4571,7 @@ exports.ArrowRightCircleIcon = SvgArrowRightCircle;
4546
4571
  exports.ArrowRightIcon = SvgArrowRight;
4547
4572
  exports.ArrowRightLimitIcon = SvgArrowRightLimit;
4548
4573
  exports.ArrowStraightIcon = SvgArrowStraight;
4574
+ exports.ArrowUpCircleIcon = SvgArrowUpCircle;
4549
4575
  exports.ArrowUpDownIcon = SvgArrowUpDown;
4550
4576
  exports.ArrowUpIcon = SvgArrowUp;
4551
4577
  exports.ArrowUpLimitIcon = SvgArrowUpLimit;
@@ -4709,6 +4735,7 @@ exports.PaperTwoIcon = SvgPaperTwo;
4709
4735
  exports.PauseIcon = SvgPause;
4710
4736
  exports.PenIcon = SvgPen;
4711
4737
  exports.PercentInCircleIcon = SvgPercentInCircle;
4738
+ exports.PictureFrameIcon = SvgPictureFrame;
4712
4739
  exports.PictureIcon = SvgPicture;
4713
4740
  exports.PictureOffIcon = SvgPictureOff;
4714
4741
  exports.PillColorIcon = SvgPillColor;
@@ -0,0 +1,15 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgArrowUpCircle = 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: "M23 12c0-6.1-4.9-11-11-11S1 5.9 1 12s4.9 11 11 11 11-4.9 11-11Zm-12 4.5V9.9l-2.3 2.3c-.4.4-1 .4-1.4 0-.2-.2-.3-.5-.3-.7 0-.2.1-.5.3-.7l4-4c.4-.4 1-.4 1.4 0l4 4c.4.4.4 1 0 1.4-.4.4-1 .4-1.4 0L13 9.9v6.6c0 .6-.4 1-1 1s-1-.5-1-1Z"
13
+ }));
14
+
15
+ export { SvgArrowUpCircle as default };
package/esm/Frame.js CHANGED
@@ -9,9 +9,10 @@ const SvgFrame = props => /*#__PURE__*/React.createElement("svg", _extends({
9
9
  viewBox: "0 0 24 24"
10
10
  }, props), /*#__PURE__*/React.createElement("path", {
11
11
  fill: "currentColor",
12
- fillRule: "evenodd",
13
- d: "M16.566 2.83h2.154a1.882 1.882 0 1 1 2.45 2.45v2.154a1.882 1.882 0 0 1 0 3.489v2.154a1.882 1.882 0 0 1 0 3.489v2.154a1.881 1.881 0 1 1-2.45 2.45h-2.154a1.882 1.882 0 0 1-3.489 0h-2.154a1.882 1.882 0 0 1-3.489 0H5.28a1.882 1.882 0 1 1-2.45-2.45v-2.154a1.882 1.882 0 0 1 0-3.489v-2.154a1.882 1.882 0 0 1 0-3.489V5.28a1.882 1.882 0 1 1 2.45-2.45h2.154a1.882 1.882 0 0 1 3.489 0h2.154a1.882 1.882 0 0 1 3.489 0ZM6.357 5.417a.94.94 0 0 0-.94.94v11.286c0 .52.42.94.94.94h11.286a.94.94 0 0 0 .94-.94V6.357a.94.94 0 0 0-.94-.94H6.357Z",
14
- clipRule: "evenodd"
12
+ d: "M2 6.3a1.2 1.2 0 0 1 1.2-1.2h17.6a1.2 1.2 0 0 1 0 2.4H3.2A1.2 1.2 0 0 1 2 6.3ZM2 17.7a1.2 1.2 0 0 1 1.2-1.2h17.6a1.2 1.2 0 0 1 0 2.4H3.2A1.2 1.2 0 0 1 2 17.7Z"
13
+ }), /*#__PURE__*/React.createElement("path", {
14
+ fill: "currentColor",
15
+ d: "M17.7 2a1.2 1.2 0 0 1 1.2 1.2v17.6a1.2 1.2 0 0 1-2.4 0V3.2A1.2 1.2 0 0 1 17.7 2ZM6.3 2a1.2 1.2 0 0 1 1.2 1.2v17.6a1.2 1.2 0 0 1-2.4 0V3.2A1.2 1.2 0 0 1 6.3 2Z"
15
16
  }));
16
17
 
17
18
  export { SvgFrame as default };
@@ -0,0 +1,17 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgPictureFrame = 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: "M16.566 2.83h2.154a1.882 1.882 0 1 1 2.45 2.45v2.154a1.882 1.882 0 0 1 0 3.489v2.154a1.882 1.882 0 0 1 0 3.489v2.154a1.881 1.881 0 1 1-2.45 2.45h-2.154a1.882 1.882 0 0 1-3.489 0h-2.154a1.882 1.882 0 0 1-3.489 0H5.28a1.882 1.882 0 1 1-2.45-2.45v-2.154a1.882 1.882 0 0 1 0-3.489v-2.154a1.882 1.882 0 0 1 0-3.489V5.28a1.882 1.882 0 1 1 2.45-2.45h2.154a1.882 1.882 0 0 1 3.489 0h2.154a1.882 1.882 0 0 1 3.489 0ZM6.357 5.417a.94.94 0 0 0-.94.94v11.286c0 .52.42.94.94.94h11.286a.94.94 0 0 0 .94-.94V6.357a.94.94 0 0 0-.94-.94H6.357Z",
14
+ clipRule: "evenodd"
15
+ }));
16
+
17
+ export { SvgPictureFrame as default };
package/esm/index.js CHANGED
@@ -32,6 +32,7 @@ export { default as ArrowRightCircleIcon } from './ArrowRightCircle.js';
32
32
  export { default as ArrowRightLimitIcon } from './ArrowRightLimit.js';
33
33
  export { default as ArrowStraightIcon } from './ArrowStraight.js';
34
34
  export { default as ArrowUpIcon } from './ArrowUp.js';
35
+ export { default as ArrowUpCircleIcon } from './ArrowUpCircle.js';
35
36
  export { default as ArrowUpDownIcon } from './ArrowUpDown.js';
36
37
  export { default as ArrowUpLimitIcon } from './ArrowUpLimit.js';
37
38
  export { default as AtomIcon } from './Atom.js';
@@ -195,6 +196,7 @@ export { default as PauseIcon } from './Pause.js';
195
196
  export { default as PenIcon } from './Pen.js';
196
197
  export { default as PercentInCircleIcon } from './PercentInCircle.js';
197
198
  export { default as PictureIcon } from './Picture.js';
199
+ export { default as PictureFrameIcon } from './PictureFrame.js';
198
200
  export { default as PictureOffIcon } from './PictureOff.js';
199
201
  export { default as PillIcon } from './Pill.js';
200
202
  export { default as PillColorIcon } from './PillColor.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/icons",
3
- "version": "1.73.1",
3
+ "version": "1.75.0",
4
4
  "description": "Icon components for React based project",
5
5
  "author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
6
6
  "homepage": "https://github.com/weareteamturing/bombe#readme",
@@ -40,5 +40,5 @@
40
40
  "peerDependencies": {
41
41
  "react": "^18.2.0"
42
42
  },
43
- "gitHead": "224e16d81f6eadc1fb028ee5c875c42f5d23f325"
43
+ "gitHead": "83d4929390e6b37022f432b181916aafc411008d"
44
44
  }
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M23 12C23 5.9 18.1 1 12 1C5.9 1 1 5.9 1 12C1 18.1 5.9 23 12 23C18.1 23 23 18.1 23 12ZM11 16.5V9.9L8.7 12.2C8.3 12.6 7.7 12.6 7.3 12.2C7.1 12 7 11.7 7 11.5C7 11.3 7.1 11 7.3 10.8L11.3 6.8C11.7 6.4 12.3 6.4 12.7 6.8L16.7 10.8C17.1 11.2 17.1 11.8 16.7 12.2C16.3 12.6 15.7 12.6 15.3 12.2L13 9.9V16.5C13 17.1 12.6 17.5 12 17.5C11.4 17.5 11 17 11 16.5Z" fill="#8D94A0"/>
3
+ </svg>
package/svg/frame.svg CHANGED
@@ -1,3 +1,6 @@
1
1
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M16.5658 2.83023H18.7203C18.9993 2.14088 19.6752 1.6546 20.4646 1.6546C21.5034 1.6546 22.3456 2.49676 22.3456 3.5356C22.3456 4.32501 21.8593 5.00084 21.1699 5.27988V7.43434C21.8593 7.71338 22.3456 8.38921 22.3456 9.17861C22.3456 9.96802 21.8593 10.6438 21.1699 10.9229V13.0773C21.8593 13.3564 22.3456 14.0322 22.3456 14.8216C22.3456 15.611 21.8593 16.2868 21.1699 16.5659V18.7204C21.8593 18.9994 22.3456 19.6752 22.3456 20.4646C22.3456 21.5035 21.5034 22.3456 20.4646 22.3456C19.6752 22.3456 18.9993 21.8593 18.7203 21.17H16.5658C16.2868 21.8593 15.611 22.3456 14.8216 22.3456C14.0322 22.3456 13.3563 21.8593 13.0773 21.17H10.9228C10.6438 21.8593 9.96796 22.3456 9.17855 22.3456C8.38915 22.3456 7.71332 21.8593 7.43428 21.17H5.27982C5.00077 21.8593 4.32495 22.3456 3.53554 22.3456C2.49669 22.3456 1.65454 21.5035 1.65454 20.4646C1.65454 19.6752 2.14082 18.9994 2.83017 18.7204V16.5659C2.14082 16.2869 1.65454 15.611 1.65454 14.8216C1.65454 14.0322 2.14082 13.3564 2.83017 13.0773V10.9229C2.14082 10.6438 1.65454 9.96802 1.65454 9.17861C1.65454 8.38921 2.14082 7.71338 2.83017 7.43434V5.2799C2.14085 5.00084 1.6546 4.32503 1.6546 3.53565C1.6546 2.4968 2.49675 1.65464 3.5356 1.65464C4.32499 1.65464 5.0008 2.1409 5.27985 2.83023H7.43428C7.71332 2.14088 8.38915 1.6546 9.17855 1.6546C9.96796 1.6546 10.6438 2.14088 10.9228 2.83023H13.0773C13.3563 2.14088 14.0322 1.6546 14.8216 1.6546C15.611 1.6546 16.2868 2.14088 16.5658 2.83023ZM6.35705 5.41661C5.83762 5.41661 5.41655 5.83768 5.41655 6.35711V17.6431C5.41655 18.1625 5.83762 18.5836 6.35705 18.5836H17.6431C18.1625 18.5836 18.5836 18.1625 18.5836 17.6431V6.35711C18.5836 5.83768 18.1625 5.41661 17.6431 5.41661H6.35705Z" fill="#8D94A0"/>
2
+ <path d="M2 6.3C2 5.63726 2.53726 5.1 3.2 5.1H20.8C21.4627 5.1 22 5.63726 22 6.3C22 6.96274 21.4627 7.5 20.8 7.5H3.2C2.53726 7.5 2 6.96274 2 6.3Z" fill="#8D94A0"/>
3
+ <path d="M2 17.7C2 17.0373 2.53726 16.5 3.2 16.5H20.8C21.4627 16.5 22 17.0373 22 17.7C22 18.3628 21.4627 18.9 20.8 18.9H3.2C2.53726 18.9 2 18.3628 2 17.7Z" fill="#8D94A0"/>
4
+ <path d="M17.7 2C18.3627 2 18.9 2.53726 18.9 3.2V20.8C18.9 21.4627 18.3627 22 17.7 22C17.0373 22 16.5 21.4627 16.5 20.8V3.2C16.5 2.53726 17.0373 2 17.7 2Z" fill="#8D94A0"/>
5
+ <path d="M6.3 2C6.96274 2 7.5 2.53726 7.5 3.2V20.8C7.5 21.4627 6.96274 22 6.3 22C5.63726 22 5.1 21.4627 5.1 20.8V3.2C5.1 2.53726 5.63726 2 6.3 2Z" fill="#8D94A0"/>
3
6
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M16.5658 2.83023H18.7203C18.9993 2.14088 19.6752 1.6546 20.4646 1.6546C21.5034 1.6546 22.3456 2.49676 22.3456 3.5356C22.3456 4.32501 21.8593 5.00084 21.1699 5.27988V7.43434C21.8593 7.71338 22.3456 8.38921 22.3456 9.17861C22.3456 9.96802 21.8593 10.6438 21.1699 10.9229V13.0773C21.8593 13.3564 22.3456 14.0322 22.3456 14.8216C22.3456 15.611 21.8593 16.2868 21.1699 16.5659V18.7204C21.8593 18.9994 22.3456 19.6752 22.3456 20.4646C22.3456 21.5035 21.5034 22.3456 20.4646 22.3456C19.6752 22.3456 18.9993 21.8593 18.7203 21.17H16.5658C16.2868 21.8593 15.611 22.3456 14.8216 22.3456C14.0322 22.3456 13.3563 21.8593 13.0773 21.17H10.9228C10.6438 21.8593 9.96796 22.3456 9.17855 22.3456C8.38915 22.3456 7.71332 21.8593 7.43428 21.17H5.27982C5.00077 21.8593 4.32495 22.3456 3.53554 22.3456C2.49669 22.3456 1.65454 21.5035 1.65454 20.4646C1.65454 19.6752 2.14082 18.9994 2.83017 18.7204V16.5659C2.14082 16.2869 1.65454 15.611 1.65454 14.8216C1.65454 14.0322 2.14082 13.3564 2.83017 13.0773V10.9229C2.14082 10.6438 1.65454 9.96802 1.65454 9.17861C1.65454 8.38921 2.14082 7.71338 2.83017 7.43434V5.2799C2.14085 5.00084 1.6546 4.32503 1.6546 3.53565C1.6546 2.4968 2.49675 1.65464 3.5356 1.65464C4.32499 1.65464 5.0008 2.1409 5.27985 2.83023H7.43428C7.71332 2.14088 8.38915 1.6546 9.17855 1.6546C9.96796 1.6546 10.6438 2.14088 10.9228 2.83023H13.0773C13.3563 2.14088 14.0322 1.6546 14.8216 1.6546C15.611 1.6546 16.2868 2.14088 16.5658 2.83023ZM6.35705 5.41661C5.83762 5.41661 5.41655 5.83768 5.41655 6.35711V17.6431C5.41655 18.1625 5.83762 18.5836 6.35705 18.5836H17.6431C18.1625 18.5836 18.5836 18.1625 18.5836 17.6431V6.35711C18.5836 5.83768 18.1625 5.41661 17.6431 5.41661H6.35705Z" fill="#8D94A0"/>
3
+ </svg>