@teamturing/icons 1.59.0 → 1.60.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/Comment.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +12 -0
- package/esm/Comment.js +15 -0
- package/esm/index.js +1 -0
- package/package.json +2 -2
- package/svg/comment.svg +3 -0
package/dist/index.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export { default as CloseIcon } from './Close';
|
|
|
73
73
|
export { default as CloseInCircleIcon } from './CloseInCircle';
|
|
74
74
|
export { default as CoinIcon } from './Coin';
|
|
75
75
|
export { default as CommandLineIcon } from './CommandLine';
|
|
76
|
+
export { default as CommentIcon } from './Comment';
|
|
76
77
|
export { default as ContactIcon } from './Contact';
|
|
77
78
|
export { default as CopyIcon } from './Copy';
|
|
78
79
|
export { default as CorrectIcon } from './Correct';
|
package/dist/index.js
CHANGED
|
@@ -1136,6 +1136,17 @@ const SvgCommandLine = props => /*#__PURE__*/React__namespace.createElement("svg
|
|
|
1136
1136
|
d: "M1.579 2.22c.59-.408 1.384-.233 1.77.391l6.353 8.649c.278.45.278 1.03 0 1.48L3.349 21.39c-.386.624-1.18.799-1.77.39-.591-.408-.757-1.246-.37-1.87L7.102 12 1.209 4.091c-.387-.624-.221-1.462.37-1.87ZM21.72 19.298c.706 0 1.279.605 1.279 1.352 0 .746-.573 1.35-1.28 1.35H9.65c-.706 0-1.278-.604-1.278-1.35 0-.747.572-1.352 1.279-1.352h12.07Z"
|
|
1137
1137
|
}));
|
|
1138
1138
|
|
|
1139
|
+
const SvgComment = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1140
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1141
|
+
width: "1em",
|
|
1142
|
+
height: "1em",
|
|
1143
|
+
fill: "none",
|
|
1144
|
+
viewBox: "0 0 24 24"
|
|
1145
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
1146
|
+
fill: "currentColor",
|
|
1147
|
+
d: "M20.71 12a8.71 8.71 0 1 0-17.42 0v8.04c0 .37.3.67.67.67H12c4.81 0 8.71-3.9 8.71-8.71ZM23 12c0 6.075-4.925 11-11 11H3.96A2.96 2.96 0 0 1 1 20.04V12C1 5.925 5.925 1 12 1s11 4.925 11 11Z"
|
|
1148
|
+
}));
|
|
1149
|
+
|
|
1139
1150
|
const SvgContact = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1140
1151
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1141
1152
|
width: "1em",
|
|
@@ -4184,6 +4195,7 @@ exports.CloseIcon = SvgClose;
|
|
|
4184
4195
|
exports.CloseInCircleIcon = SvgCloseInCircle;
|
|
4185
4196
|
exports.CoinIcon = SvgCoin;
|
|
4186
4197
|
exports.CommandLineIcon = SvgCommandLine;
|
|
4198
|
+
exports.CommentIcon = SvgComment;
|
|
4187
4199
|
exports.ContactIcon = SvgContact;
|
|
4188
4200
|
exports.CopyIcon = SvgCopy;
|
|
4189
4201
|
exports.CorrectIcon = SvgCorrect;
|
package/esm/Comment.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgComment = 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: "M20.71 12a8.71 8.71 0 1 0-17.42 0v8.04c0 .37.3.67.67.67H12c4.81 0 8.71-3.9 8.71-8.71ZM23 12c0 6.075-4.925 11-11 11H3.96A2.96 2.96 0 0 1 1 20.04V12C1 5.925 5.925 1 12 1s11 4.925 11 11Z"
|
|
13
|
+
}));
|
|
14
|
+
|
|
15
|
+
export { SvgComment as default };
|
package/esm/index.js
CHANGED
|
@@ -73,6 +73,7 @@ export { default as CloseIcon } from './Close.js';
|
|
|
73
73
|
export { default as CloseInCircleIcon } from './CloseInCircle.js';
|
|
74
74
|
export { default as CoinIcon } from './Coin.js';
|
|
75
75
|
export { default as CommandLineIcon } from './CommandLine.js';
|
|
76
|
+
export { default as CommentIcon } from './Comment.js';
|
|
76
77
|
export { default as ContactIcon } from './Contact.js';
|
|
77
78
|
export { default as CopyIcon } from './Copy.js';
|
|
78
79
|
export { default as CorrectIcon } from './Correct.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.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": "569dccd464b45e25d7572ab8c908b97428ea242e"
|
|
44
44
|
}
|
package/svg/comment.svg
ADDED
|
@@ -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="M20.71 12C20.71 7.18959 16.8104 3.28999 12 3.28999C7.18959 3.28999 3.28999 7.18959 3.28999 12V20.04C3.28999 20.41 3.58996 20.71 3.95999 20.71H12C16.8104 20.71 20.71 16.8104 20.71 12ZM23 12C23 18.0751 18.0751 23 12 23H3.95999C2.32524 23 1 21.6748 1 20.04V12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12Z" fill="#8D94A0"/>
|
|
3
|
+
</svg>
|