@teamturing/icons 1.39.0 → 1.40.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.
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgArrowBelow: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgArrowBelow;
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@ export { default as AiColorIcon } from './AiColor';
3
3
  export { default as AiSadIcon } from './AiSad';
4
4
  export { default as AlarmIcon } from './Alarm';
5
5
  export { default as AppleColorIcon } from './AppleColor';
6
+ export { default as ArrowBelowIcon } from './ArrowBelow';
6
7
  export { default as ArrowDiagonalIcon } from './ArrowDiagonal';
7
8
  export { default as ArrowDownIcon } from './ArrowDown';
8
9
  export { default as ArrowLeftIcon } from './ArrowLeft';
package/dist/index.js CHANGED
@@ -121,6 +121,26 @@ const SvgAppleColor = props => /*#__PURE__*/React__namespace.createElement("svg"
121
121
  d: "M14.514 11.781c-.01-1.139.952-1.685.995-1.71-.54-.774-1.384-.882-1.683-.895-.718-.07-1.401.413-1.764.413s-.926-.401-1.52-.39a2.263 2.263 0 0 0-1.906 1.127c-.813 1.377-.209 3.418.584 4.535.386.547.847 1.161 1.452 1.14.585-.023.805-.37 1.51-.37.706 0 .904.37 1.521.36.628-.013 1.026-.56 1.409-1.107.443-.634.627-1.248.638-1.28-.014-.006-1.223-.46-1.236-1.823ZM13.354 8.436c.322-.38.54-.91.48-1.436-.463.017-1.024.303-1.356.681-.299.338-.56.878-.49 1.394.516.038 1.046-.257 1.366-.639Z"
122
122
  }));
123
123
 
124
+ const SvgArrowBelow = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
125
+ xmlns: "http://www.w3.org/2000/svg",
126
+ width: "1em",
127
+ height: "1em",
128
+ fill: "none",
129
+ viewBox: "0 0 24 24"
130
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
131
+ stroke: "currentColor",
132
+ strokeLinecap: "round",
133
+ strokeLinejoin: "round",
134
+ strokeWidth: 2.2,
135
+ d: "m14.293 20.046 4.64-4.639-4.64-4.64"
136
+ }), /*#__PURE__*/React__namespace.createElement("path", {
137
+ stroke: "currentColor",
138
+ strokeLinecap: "round",
139
+ strokeLinejoin: "round",
140
+ strokeWidth: 2.2,
141
+ d: "M18.932 15.407H7.568a2.5 2.5 0 0 1-2.5-2.5V3.953"
142
+ }));
143
+
124
144
  const SvgArrowDiagonal = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
125
145
  xmlns: "http://www.w3.org/2000/svg",
126
146
  width: "1em",
@@ -3543,6 +3563,7 @@ exports.AiIcon = SvgAi;
3543
3563
  exports.AiSadIcon = SvgAiSad;
3544
3564
  exports.AlarmIcon = SvgAlarm;
3545
3565
  exports.AppleColorIcon = SvgAppleColor;
3566
+ exports.ArrowBelowIcon = SvgArrowBelow;
3546
3567
  exports.ArrowDiagonalIcon = SvgArrowDiagonal;
3547
3568
  exports.ArrowDownIcon = SvgArrowDown;
3548
3569
  exports.ArrowLeftCircleIcon = SvgArrowLeftCircle;
@@ -0,0 +1,24 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgArrowBelow = 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
+ stroke: "currentColor",
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round",
14
+ strokeWidth: 2.2,
15
+ d: "m14.293 20.046 4.64-4.639-4.64-4.64"
16
+ }), /*#__PURE__*/React.createElement("path", {
17
+ stroke: "currentColor",
18
+ strokeLinecap: "round",
19
+ strokeLinejoin: "round",
20
+ strokeWidth: 2.2,
21
+ d: "M18.932 15.407H7.568a2.5 2.5 0 0 1-2.5-2.5V3.953"
22
+ }));
23
+
24
+ export { SvgArrowBelow as default };
package/esm/index.js CHANGED
@@ -3,6 +3,7 @@ export { default as AiColorIcon } from './AiColor.js';
3
3
  export { default as AiSadIcon } from './AiSad.js';
4
4
  export { default as AlarmIcon } from './Alarm.js';
5
5
  export { default as AppleColorIcon } from './AppleColor.js';
6
+ export { default as ArrowBelowIcon } from './ArrowBelow.js';
6
7
  export { default as ArrowDiagonalIcon } from './ArrowDiagonal.js';
7
8
  export { default as ArrowDownIcon } from './ArrowDown.js';
8
9
  export { default as ArrowLeftIcon } from './ArrowLeft.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/icons",
3
- "version": "1.39.0",
3
+ "version": "1.40.1",
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",
@@ -38,5 +38,5 @@
38
38
  "peerDependencies": {
39
39
  "react": "^18.2.0"
40
40
  },
41
- "gitHead": "5ffda9f34ed0398c6de4786338f54af08adc875e"
41
+ "gitHead": "d0cfb545d0075aaf001e018fd48e848117c66e99"
42
42
  }
@@ -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="M6.16765 3.95339C6.16765 3.34588 5.67516 2.85339 5.06765 2.85339C4.46014 2.85339 3.96765 3.34588 3.96765 3.95339V12.9072C3.96765 14.8955 5.57942 16.5072 7.56765 16.5072L16.2766 16.5072L13.5151 19.2686C13.0855 19.6982 13.0855 20.3947 13.5151 20.8243C13.9447 21.2538 14.6412 21.2538 15.0707 20.8243L19.71 16.1851C19.7843 16.1108 19.8468 16.0271 19.8964 15.9367C19.947 15.8447 19.9848 15.7448 20.0075 15.6392C20.0238 15.5635 20.0322 15.4858 20.0322 15.4072C20.0322 15.3287 20.0238 15.2509 20.0075 15.1753C19.9844 15.0679 19.9457 14.9663 19.8938 14.873C19.8446 14.7844 19.783 14.7023 19.71 14.6294L15.0707 9.99012C14.6412 9.56054 13.9447 9.56054 13.5151 9.99012C13.0855 10.4197 13.0855 11.1162 13.5151 11.5458L16.2766 14.3072L7.56765 14.3072C6.79445 14.3072 6.16765 13.6804 6.16765 12.9072V3.95339Z" fill="#8D94A0"/>
3
+ </svg>