@teamturing/icons 1.71.0 → 1.72.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/TextBox.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +23 -0
- package/esm/TextBox.js +26 -0
- package/esm/index.js +1 -0
- package/package.json +2 -2
- package/svg/text_box.svg +11 -0
package/dist/index.d.ts
CHANGED
|
@@ -248,6 +248,7 @@ export { default as SunIcon } from './Sun';
|
|
|
248
248
|
export { default as SyncIcon } from './Sync';
|
|
249
249
|
export { default as TelescopeIcon } from './Telescope';
|
|
250
250
|
export { default as TestUploadColorIcon } from './TestUploadColor';
|
|
251
|
+
export { default as TextBoxIcon } from './TextBox';
|
|
251
252
|
export { default as ThumbdownIcon } from './Thumbdown';
|
|
252
253
|
export { default as ThumbupIcon } from './Thumbup';
|
|
253
254
|
export { default as ThunderIcon } from './Thunder';
|
package/dist/index.js
CHANGED
|
@@ -3938,6 +3938,28 @@ const SvgTestUploadColor = props => /*#__PURE__*/React__namespace.createElement(
|
|
|
3938
3938
|
d: "m12.484 13.449 4.338-3.88a.328.328 0 0 1 .435-.003l4.43 3.88c.228.2.087.575-.216.575h-2.005a.34.34 0 0 0-.333.331c-.158 4.863-3.811 6.125-6.202 6.177-.287.007-.407-.341-.206-.546 2.16-2.194 2.613-4.543 2.478-5.705a.298.298 0 0 0-.304-.257h-2.196a.328.328 0 0 1-.219-.572Z"
|
|
3939
3939
|
}));
|
|
3940
3940
|
|
|
3941
|
+
const SvgTextBox = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3942
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3943
|
+
width: "1em",
|
|
3944
|
+
height: "1em",
|
|
3945
|
+
fill: "none",
|
|
3946
|
+
viewBox: "0 0 24 24"
|
|
3947
|
+
}, props), /*#__PURE__*/React__namespace.createElement("g", {
|
|
3948
|
+
fill: "currentColor",
|
|
3949
|
+
clipPath: "url(#text_box_svg__a)"
|
|
3950
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
3951
|
+
d: "M18.2 9.35h-1.9V7.7h-3.35v8.6h1.95v1.9H9.1v-1.9h1.95V7.7H7.7v1.65H5.8V5.8h12.4v3.55Z"
|
|
3952
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3953
|
+
fillRule: "evenodd",
|
|
3954
|
+
d: "M19.028 21.862c.007.047.013.093.022.138H4.95A2.501 2.501 0 0 1 0 21.5c0-1.257.928-2.296 2.137-2.472-.046.007-.092.013-.137.022V4.95A2.5 2.5 0 1 1 4.95 2h14.1A2.5 2.5 0 1 1 22 4.95v14.1c-.045-.01-.091-.015-.138-.022a2.499 2.499 0 1 1-2.834 2.834ZM2.5 20.8a.7.7 0 1 0 0 1.4.7.7 0 0 0 0-1.4Zm19 0a.7.7 0 1 0 0 1.4.7.7 0 0 0 0-1.4Zm-16.513.956a2.495 2.495 0 0 1 0-.002v.002ZM4.497 4A2.508 2.508 0 0 1 4 4.496v15.007l-.017-.012c.195.144.367.316.513.509h15.008a2.51 2.51 0 0 1 .512-.509l-.016.012V4.496A2.51 2.51 0 0 1 19.504 4H4.496ZM2.5 1.8a.7.7 0 1 0 0 1.4.7.7 0 0 0 0-1.4Zm19 0a.7.7 0 1 0 0 1.4.7.7 0 0 0 0-1.4Zm-2.487 19.956v-.002c.003.036.01.072.015.108-.005-.035-.012-.07-.015-.106Z",
|
|
3955
|
+
clipRule: "evenodd"
|
|
3956
|
+
})), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
3957
|
+
id: "text_box_svg__a"
|
|
3958
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
3959
|
+
fill: "#fff",
|
|
3960
|
+
d: "M0 0h24v24H0z"
|
|
3961
|
+
}))));
|
|
3962
|
+
|
|
3941
3963
|
const SvgThumbdown = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3942
3964
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3943
3965
|
width: "1em",
|
|
@@ -4708,6 +4730,7 @@ exports.SunIcon = SvgSun;
|
|
|
4708
4730
|
exports.SyncIcon = SvgSync;
|
|
4709
4731
|
exports.TelescopeIcon = SvgTelescope;
|
|
4710
4732
|
exports.TestUploadColorIcon = SvgTestUploadColor;
|
|
4733
|
+
exports.TextBoxIcon = SvgTextBox;
|
|
4711
4734
|
exports.ThumbdownIcon = SvgThumbdown;
|
|
4712
4735
|
exports.ThumbupIcon = SvgThumbup;
|
|
4713
4736
|
exports.ThunderIcon = SvgThunder;
|
package/esm/TextBox.js
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgTextBox = 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("g", {
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
clipPath: "url(#text_box_svg__a)"
|
|
13
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M18.2 9.35h-1.9V7.7h-3.35v8.6h1.95v1.9H9.1v-1.9h1.95V7.7H7.7v1.65H5.8V5.8h12.4v3.55Z"
|
|
15
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
fillRule: "evenodd",
|
|
17
|
+
d: "M19.028 21.862c.007.047.013.093.022.138H4.95A2.501 2.501 0 0 1 0 21.5c0-1.257.928-2.296 2.137-2.472-.046.007-.092.013-.137.022V4.95A2.5 2.5 0 1 1 4.95 2h14.1A2.5 2.5 0 1 1 22 4.95v14.1c-.045-.01-.091-.015-.138-.022a2.499 2.499 0 1 1-2.834 2.834ZM2.5 20.8a.7.7 0 1 0 0 1.4.7.7 0 0 0 0-1.4Zm19 0a.7.7 0 1 0 0 1.4.7.7 0 0 0 0-1.4Zm-16.513.956a2.495 2.495 0 0 1 0-.002v.002ZM4.497 4A2.508 2.508 0 0 1 4 4.496v15.007l-.017-.012c.195.144.367.316.513.509h15.008a2.51 2.51 0 0 1 .512-.509l-.016.012V4.496A2.51 2.51 0 0 1 19.504 4H4.496ZM2.5 1.8a.7.7 0 1 0 0 1.4.7.7 0 0 0 0-1.4Zm19 0a.7.7 0 1 0 0 1.4.7.7 0 0 0 0-1.4Zm-2.487 19.956v-.002c.003.036.01.072.015.108-.005-.035-.012-.07-.015-.106Z",
|
|
18
|
+
clipRule: "evenodd"
|
|
19
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
20
|
+
id: "text_box_svg__a"
|
|
21
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
fill: "#fff",
|
|
23
|
+
d: "M0 0h24v24H0z"
|
|
24
|
+
}))));
|
|
25
|
+
|
|
26
|
+
export { SvgTextBox as default };
|
package/esm/index.js
CHANGED
|
@@ -248,6 +248,7 @@ export { default as SunIcon } from './Sun.js';
|
|
|
248
248
|
export { default as SyncIcon } from './Sync.js';
|
|
249
249
|
export { default as TelescopeIcon } from './Telescope.js';
|
|
250
250
|
export { default as TestUploadColorIcon } from './TestUploadColor.js';
|
|
251
|
+
export { default as TextBoxIcon } from './TextBox.js';
|
|
251
252
|
export { default as ThumbdownIcon } from './Thumbdown.js';
|
|
252
253
|
export { default as ThumbupIcon } from './Thumbup.js';
|
|
253
254
|
export { default as ThunderIcon } from './Thunder.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.72.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": "1c27b74c7b552cc68964894260bd3368a1bfaf2e"
|
|
44
44
|
}
|
package/svg/text_box.svg
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_20504_64)">
|
|
3
|
+
<path d="M18.2002 9.34961H16.2998V7.7002H12.9502V16.2998H14.9004V18.2002H9.09961V16.2998H11.0498V7.7002H7.7002V9.34961H5.7998V5.7998H18.2002V9.34961Z" fill="#8D94A0"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.0283 21.8623C19.035 21.9085 19.0406 21.9547 19.0498 22H4.9502C4.71858 23.1411 3.70949 24 2.5 24C1.11929 24 0 22.8807 0 21.5C0 20.2428 0.928327 19.2044 2.13672 19.0283C2.09084 19.035 2.04503 19.0407 2 19.0498V4.94922C0.858955 4.71753 0 3.70943 0 2.5C0 1.11929 1.11929 0 2.5 0C3.88071 0 5 1.11929 5 2.5C5 2.32878 4.98298 2.16154 4.9502 2H19.0498C19.017 2.16154 19 2.32878 19 2.5C19 1.11929 20.1193 0 21.5 0C22.8807 0 24 1.11929 24 2.5C24 3.70943 23.141 4.71753 22 4.94922V19.0498C21.9547 19.0406 21.9085 19.035 21.8623 19.0283C23.0712 19.204 24 20.2424 24 21.5C24 22.8807 22.8807 24 21.5 24C20.2424 24 19.204 23.0712 19.0283 21.8623ZM2.5 20.7998C2.1134 20.7998 1.7998 21.1134 1.7998 21.5C1.7998 21.8866 2.1134 22.2002 2.5 22.2002C2.8866 22.2002 3.2002 21.8866 3.2002 21.5C3.2002 21.1134 2.8866 20.7998 2.5 20.7998ZM21.5 20.7998C21.1134 20.7998 20.7998 21.1134 20.7998 21.5C20.7998 21.8866 21.1134 22.2002 21.5 22.2002C21.8866 22.2002 22.2002 21.8866 22.2002 21.5C22.2002 21.1134 21.8866 20.7998 21.5 20.7998ZM4.9873 21.7559C4.97908 21.8368 4.96694 21.9166 4.95117 21.9951C4.96706 21.916 4.97912 21.8355 4.9873 21.7539V21.7559ZM4.49609 4C4.35464 4.18794 4.18794 4.35464 4 4.49609V19.5029C3.99459 19.4989 3.98884 19.4952 3.9834 19.4912C4.17816 19.6353 4.35045 19.8065 4.49609 20H19.5039C19.6494 19.8067 19.8211 19.6352 20.0156 19.4912C20.0104 19.4951 20.0052 19.499 20 19.5029V4.49609C19.8121 4.35464 19.6454 4.18794 19.5039 4H4.49609ZM2.5 1.7998C2.1134 1.7998 1.7998 2.1134 1.7998 2.5C1.7998 2.8866 2.1134 3.2002 2.5 3.2002C2.8866 3.2002 3.2002 2.8866 3.2002 2.5C3.2002 2.1134 2.8866 1.7998 2.5 1.7998ZM21.5 1.7998C21.1134 1.7998 20.7998 2.1134 20.7998 2.5C20.7998 2.8866 21.1134 3.2002 21.5 3.2002C21.8866 3.2002 22.2002 2.8866 22.2002 2.5C22.2002 2.1134 21.8866 1.7998 21.5 1.7998ZM19.0127 21.7559V21.7539C19.0164 21.7904 19.0231 21.8263 19.0283 21.8623C19.0232 21.8269 19.0163 21.7917 19.0127 21.7559Z" fill="#8D94A0"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_20504_64">
|
|
8
|
+
<rect width="24" height="24" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|