@teamturing/icons 1.74.0 → 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.
- package/dist/ArrowUpCircle.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +12 -0
- package/esm/ArrowUpCircle.js +15 -0
- package/esm/index.js +1 -0
- package/package.json +2 -2
- package/svg/arrow_up_circle.svg +3 -0
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';
|
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",
|
|
@@ -4560,6 +4571,7 @@ exports.ArrowRightCircleIcon = SvgArrowRightCircle;
|
|
|
4560
4571
|
exports.ArrowRightIcon = SvgArrowRight;
|
|
4561
4572
|
exports.ArrowRightLimitIcon = SvgArrowRightLimit;
|
|
4562
4573
|
exports.ArrowStraightIcon = SvgArrowStraight;
|
|
4574
|
+
exports.ArrowUpCircleIcon = SvgArrowUpCircle;
|
|
4563
4575
|
exports.ArrowUpDownIcon = SvgArrowUpDown;
|
|
4564
4576
|
exports.ArrowUpIcon = SvgArrowUp;
|
|
4565
4577
|
exports.ArrowUpLimitIcon = SvgArrowUpLimit;
|
|
@@ -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/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';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "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": "
|
|
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>
|