@teamturing/icons 1.39.0 → 1.40.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 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.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",
@@ -38,5 +38,5 @@
38
38
  "peerDependencies": {
39
39
  "react": "^18.2.0"
40
40
  },
41
- "gitHead": "5ffda9f34ed0398c6de4786338f54af08adc875e"
41
+ "gitHead": "364a55313eec1d5cde4ba1c306e7694bb1bada62"
42
42
  }
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.293 20.0464L18.9323 15.4072L14.293 10.7679" stroke="#8D94A0" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M18.932 15.4072L7.5676 15.4072C6.18689 15.4072 5.06761 14.2879 5.06761 12.9072V3.95337" stroke="#8D94A0" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>