@teamturing/icons 1.45.0 → 1.47.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/MagicWand.d.ts +3 -0
- package/dist/Print.d.ts +3 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +36 -0
- package/esm/MagicWand.js +22 -0
- package/esm/Print.js +20 -0
- package/esm/index.js +2 -0
- package/package.json +2 -2
- package/svg/magic_wand.svg +14 -0
- package/svg/print.svg +4 -0
package/dist/Print.d.ts
ADDED
package/dist/index.d.ts
CHANGED
|
@@ -119,6 +119,7 @@ export { default as LogoColorIcon } from './LogoColor';
|
|
|
119
119
|
export { default as LogoFacebookIcon } from './LogoFacebook';
|
|
120
120
|
export { default as LogoKakaoIcon } from './LogoKakao';
|
|
121
121
|
export { default as LogoNaverIcon } from './LogoNaver';
|
|
122
|
+
export { default as MagicWandIcon } from './MagicWand';
|
|
122
123
|
export { default as MaxsizeIcon } from './Maxsize';
|
|
123
124
|
export { default as MinsizeIcon } from './Minsize';
|
|
124
125
|
export { default as MinusIcon } from './Minus';
|
|
@@ -163,6 +164,7 @@ export { default as PointInCircleIcon } from './PointInCircle';
|
|
|
163
164
|
export { default as PointInCircleColorIcon } from './PointInCircleColor';
|
|
164
165
|
export { default as PresentIcon } from './Present';
|
|
165
166
|
export { default as PresentColorIcon } from './PresentColor';
|
|
167
|
+
export { default as PrintIcon } from './Print';
|
|
166
168
|
export { default as ProblemIcon } from './Problem';
|
|
167
169
|
export { default as ProfileIcon } from './Profile';
|
|
168
170
|
export { default as ProgressGradientIcon } from './ProgressGradient';
|
package/dist/index.js
CHANGED
|
@@ -1902,6 +1902,24 @@ const SvgLogoNaver = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
1902
1902
|
d: "M14.865 4v8.073L9.163 4H3v16h6.135v-8.073L14.837 20H21V4h-6.135Z"
|
|
1903
1903
|
}));
|
|
1904
1904
|
|
|
1905
|
+
const SvgMagicWand = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1906
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1907
|
+
width: "1em",
|
|
1908
|
+
height: "1em",
|
|
1909
|
+
fill: "none",
|
|
1910
|
+
viewBox: "0 0 24 24"
|
|
1911
|
+
}, props), /*#__PURE__*/React__namespace.createElement("g", {
|
|
1912
|
+
fill: "currentColor",
|
|
1913
|
+
clipPath: "url(#magic_wand_svg__a)"
|
|
1914
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
1915
|
+
d: "m14.79 10.95-2.12-2.122 2.475-2.474a.5.5 0 0 1 .707 0l1.414 1.414a.5.5 0 0 1 0 .707L14.79 10.95ZM12.316 9.182l2.121 2.121-10.96 10.96a.5.5 0 0 1-.707 0L1.356 20.85a.5.5 0 0 1 0-.707l10.96-10.96ZM10.137 5.87a.52.52 0 0 1 .233-.233l1.342-.671a.52.52 0 0 0 0-.932l-1.342-.67a.52.52 0 0 1-.233-.234l-.671-1.342a.52.52 0 0 0-.932 0l-.67 1.342a.52.52 0 0 1-.234.233l-1.342.671a.52.52 0 0 0 0 .932l1.342.67c.101.051.183.133.233.234l.671 1.342a.52.52 0 0 0 .932 0l.67-1.342ZM21.447 14.141a.434.434 0 0 1 .194-.194l1.12-.56a.434.434 0 0 0 0-.775l-1.12-.56a.434.434 0 0 1-.194-.193l-.56-1.12a.434.434 0 0 0-.775 0l-.56 1.12a.433.433 0 0 1-.193.194l-1.12.56a.434.434 0 0 0 0 .775l1.12.56c.084.041.152.11.194.193l.56 1.12c.159.319.615.319.775 0l.56-1.12ZM22.137 4.37a.52.52 0 0 1 .233-.233l1.342-.671a.52.52 0 0 0 0-.932l-1.342-.67a.52.52 0 0 1-.233-.234L21.465.288a.52.52 0 0 0-.93 0l-.672 1.342a.52.52 0 0 1-.233.233l-1.342.671a.52.52 0 0 0 0 .932l1.342.67c.101.051.183.133.233.234l.672 1.342a.52.52 0 0 0 .93 0l.672-1.342Z"
|
|
1916
|
+
})), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
1917
|
+
id: "magic_wand_svg__a"
|
|
1918
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
1919
|
+
fill: "#fff",
|
|
1920
|
+
d: "M0 0h24v24H0z"
|
|
1921
|
+
}))));
|
|
1922
|
+
|
|
1905
1923
|
const SvgMaxsize = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1906
1924
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1907
1925
|
width: "1em",
|
|
@@ -2641,6 +2659,22 @@ const SvgPresentColor = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
2641
2659
|
clipRule: "evenodd"
|
|
2642
2660
|
}));
|
|
2643
2661
|
|
|
2662
|
+
const SvgPrint = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2663
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2664
|
+
width: "1em",
|
|
2665
|
+
height: "1em",
|
|
2666
|
+
fill: "none",
|
|
2667
|
+
viewBox: "0 0 24 24"
|
|
2668
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2669
|
+
fill: "currentColor",
|
|
2670
|
+
fillRule: "evenodd",
|
|
2671
|
+
d: "M20.59 7.43a1.92 1.92 0 0 1 1.91 1.91v6.68a1.91 1.91 0 0 1-1.91 1.91H17.8V20a2.2 2.2 0 0 1-2.2 2.2H8.4A2.2 2.2 0 0 1 6.2 20v-2.07H3.41a1.91 1.91 0 0 1-1.91-1.91V9.34a1.92 1.92 0 0 1 1.91-1.91h17.18ZM8.4 15a.2.2 0 0 0-.2.2V20c0 .11.09.2.2.2h7.2a.2.2 0 0 0 .2-.2v-4.8a.2.2 0 0 0-.2-.2H8.4Zm8.056-1.827a2.203 2.203 0 0 1-.201-.074l.201.074Z",
|
|
2672
|
+
clipRule: "evenodd"
|
|
2673
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2674
|
+
fill: "currentColor",
|
|
2675
|
+
d: "M16.8 2H7.2A1.2 1.2 0 0 0 6 3.2v2.4a1.2 1.2 0 0 0 1.2 1.2h9.6A1.2 1.2 0 0 0 18 5.6V3.2A1.2 1.2 0 0 0 16.8 2Z"
|
|
2676
|
+
}));
|
|
2677
|
+
|
|
2644
2678
|
const SvgProblem = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2645
2679
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2646
2680
|
width: "1em",
|
|
@@ -3791,6 +3825,7 @@ exports.LogoColorIcon = SvgLogoColor;
|
|
|
3791
3825
|
exports.LogoFacebookIcon = SvgLogoFacebook;
|
|
3792
3826
|
exports.LogoKakaoIcon = SvgLogoKakao;
|
|
3793
3827
|
exports.LogoNaverIcon = SvgLogoNaver;
|
|
3828
|
+
exports.MagicWandIcon = SvgMagicWand;
|
|
3794
3829
|
exports.MaxsizeIcon = SvgMaxsize;
|
|
3795
3830
|
exports.MinsizeIcon = SvgMinsize;
|
|
3796
3831
|
exports.MinusIcon = SvgMinus;
|
|
@@ -3835,6 +3870,7 @@ exports.PointInCircleColorIcon = SvgPointInCircleColor;
|
|
|
3835
3870
|
exports.PointInCircleIcon = SvgPointInCircle;
|
|
3836
3871
|
exports.PresentColorIcon = SvgPresentColor;
|
|
3837
3872
|
exports.PresentIcon = SvgPresent;
|
|
3873
|
+
exports.PrintIcon = SvgPrint;
|
|
3838
3874
|
exports.ProblemIcon = SvgProblem;
|
|
3839
3875
|
exports.ProfileIcon = SvgProfile;
|
|
3840
3876
|
exports.ProgressGradientIcon = SvgProgressGradient;
|
package/esm/MagicWand.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgMagicWand = 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(#magic_wand_svg__a)"
|
|
13
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "m14.79 10.95-2.12-2.122 2.475-2.474a.5.5 0 0 1 .707 0l1.414 1.414a.5.5 0 0 1 0 .707L14.79 10.95ZM12.316 9.182l2.121 2.121-10.96 10.96a.5.5 0 0 1-.707 0L1.356 20.85a.5.5 0 0 1 0-.707l10.96-10.96ZM10.137 5.87a.52.52 0 0 1 .233-.233l1.342-.671a.52.52 0 0 0 0-.932l-1.342-.67a.52.52 0 0 1-.233-.234l-.671-1.342a.52.52 0 0 0-.932 0l-.67 1.342a.52.52 0 0 1-.234.233l-1.342.671a.52.52 0 0 0 0 .932l1.342.67c.101.051.183.133.233.234l.671 1.342a.52.52 0 0 0 .932 0l.67-1.342ZM21.447 14.141a.434.434 0 0 1 .194-.194l1.12-.56a.434.434 0 0 0 0-.775l-1.12-.56a.434.434 0 0 1-.194-.193l-.56-1.12a.434.434 0 0 0-.775 0l-.56 1.12a.433.433 0 0 1-.193.194l-1.12.56a.434.434 0 0 0 0 .775l1.12.56c.084.041.152.11.194.193l.56 1.12c.159.319.615.319.775 0l.56-1.12ZM22.137 4.37a.52.52 0 0 1 .233-.233l1.342-.671a.52.52 0 0 0 0-.932l-1.342-.67a.52.52 0 0 1-.233-.234L21.465.288a.52.52 0 0 0-.93 0l-.672 1.342a.52.52 0 0 1-.233.233l-1.342.671a.52.52 0 0 0 0 .932l1.342.67c.101.051.183.133.233.234l.672 1.342a.52.52 0 0 0 .93 0l.672-1.342Z"
|
|
15
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
16
|
+
id: "magic_wand_svg__a"
|
|
17
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fill: "#fff",
|
|
19
|
+
d: "M0 0h24v24H0z"
|
|
20
|
+
}))));
|
|
21
|
+
|
|
22
|
+
export { SvgMagicWand as default };
|
package/esm/Print.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgPrint = 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
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M20.59 7.43a1.92 1.92 0 0 1 1.91 1.91v6.68a1.91 1.91 0 0 1-1.91 1.91H17.8V20a2.2 2.2 0 0 1-2.2 2.2H8.4A2.2 2.2 0 0 1 6.2 20v-2.07H3.41a1.91 1.91 0 0 1-1.91-1.91V9.34a1.92 1.92 0 0 1 1.91-1.91h17.18ZM8.4 15a.2.2 0 0 0-.2.2V20c0 .11.09.2.2.2h7.2a.2.2 0 0 0 .2-.2v-4.8a.2.2 0 0 0-.2-.2H8.4Zm8.056-1.827a2.203 2.203 0 0 1-.201-.074l.201.074Z",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
d: "M16.8 2H7.2A1.2 1.2 0 0 0 6 3.2v2.4a1.2 1.2 0 0 0 1.2 1.2h9.6A1.2 1.2 0 0 0 18 5.6V3.2A1.2 1.2 0 0 0 16.8 2Z"
|
|
18
|
+
}));
|
|
19
|
+
|
|
20
|
+
export { SvgPrint as default };
|
package/esm/index.js
CHANGED
|
@@ -119,6 +119,7 @@ export { default as LogoColorIcon } from './LogoColor.js';
|
|
|
119
119
|
export { default as LogoFacebookIcon } from './LogoFacebook.js';
|
|
120
120
|
export { default as LogoKakaoIcon } from './LogoKakao.js';
|
|
121
121
|
export { default as LogoNaverIcon } from './LogoNaver.js';
|
|
122
|
+
export { default as MagicWandIcon } from './MagicWand.js';
|
|
122
123
|
export { default as MaxsizeIcon } from './Maxsize.js';
|
|
123
124
|
export { default as MinsizeIcon } from './Minsize.js';
|
|
124
125
|
export { default as MinusIcon } from './Minus.js';
|
|
@@ -163,6 +164,7 @@ export { default as PointInCircleIcon } from './PointInCircle.js';
|
|
|
163
164
|
export { default as PointInCircleColorIcon } from './PointInCircleColor.js';
|
|
164
165
|
export { default as PresentIcon } from './Present.js';
|
|
165
166
|
export { default as PresentColorIcon } from './PresentColor.js';
|
|
167
|
+
export { default as PrintIcon } from './Print.js';
|
|
166
168
|
export { default as ProblemIcon } from './Problem.js';
|
|
167
169
|
export { default as ProfileIcon } from './Profile.js';
|
|
168
170
|
export { default as ProgressGradientIcon } from './ProgressGradient.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.47.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": "
|
|
41
|
+
"gitHead": "0742fd7257c18f448ebb670bc1ef19ac4dc2b9dd"
|
|
42
42
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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_18424_2394)">
|
|
3
|
+
<path d="M14.7909 10.9497L12.6696 8.82843L15.1445 6.35355C15.3398 6.15829 15.6563 6.15829 15.8516 6.35355L17.2658 7.76777C17.4611 7.96303 17.4611 8.27961 17.2658 8.47487L14.7909 10.9497Z" fill="#8D94A0"/>
|
|
4
|
+
<path d="M12.3161 9.18198L14.4374 11.3033L3.47724 22.2635C3.28198 22.4587 2.96539 22.4587 2.77013 22.2635L1.35592 20.8492C1.16066 20.654 1.16066 20.3374 1.35592 20.1421L12.3161 9.18198Z" fill="#8D94A0"/>
|
|
5
|
+
<path d="M10.1369 5.86963C10.1872 5.7689 10.2689 5.68722 10.3696 5.63686L11.7123 4.96553C12.0959 4.77372 12.0959 4.22628 11.7123 4.03447L10.3696 3.36314C10.2689 3.31278 10.1872 3.2311 10.1369 3.13037L9.46554 1.78771C9.27373 1.4041 8.72629 1.4041 8.53448 1.78771L7.86315 3.13037C7.81278 3.2311 7.73111 3.31278 7.63038 3.36314L6.28772 4.03447C5.9041 4.22628 5.9041 4.77372 6.28772 4.96553L7.63038 5.63686C7.73111 5.68722 7.81278 5.7689 7.86315 5.86962L8.53448 7.21229C8.72629 7.5959 9.27373 7.5959 9.46554 7.21229L10.1369 5.86963Z" fill="#8D94A0"/>
|
|
6
|
+
<path d="M21.4474 14.1414C21.4894 14.0574 21.5574 13.9894 21.6414 13.9474L22.7602 13.3879C23.0799 13.2281 23.0799 12.7719 22.7602 12.6121L21.6414 12.0526C21.5574 12.0106 21.4894 11.9426 21.4474 11.8586L20.8879 10.7398C20.7281 10.4201 20.2719 10.4201 20.1121 10.7398L19.5526 11.8586C19.5107 11.9426 19.4426 12.0106 19.3587 12.0526L18.2398 12.6121C17.9201 12.7719 17.9201 13.2281 18.2398 13.3879L19.3587 13.9474C19.4426 13.9894 19.5107 14.0574 19.5526 14.1414L20.1121 15.2602C20.2719 15.5799 20.7281 15.5799 20.8879 15.2602L21.4474 14.1414Z" fill="#8D94A0"/>
|
|
7
|
+
<path d="M22.1369 4.36963C22.1872 4.2689 22.2689 4.18722 22.3696 4.13686L23.7123 3.46553C24.0959 3.27372 24.0959 2.72628 23.7123 2.53447L22.3696 1.86314C22.2689 1.81278 22.1872 1.7311 22.1369 1.63037L21.4655 0.287713C21.2737 -0.0959041 20.7263 -0.0959046 20.5345 0.287713L19.8631 1.63037C19.8128 1.7311 19.7311 1.81278 19.6304 1.86314L18.2877 2.53447C17.9041 2.72628 17.9041 3.27372 18.2877 3.46553L19.6304 4.13686C19.7311 4.18722 19.8128 4.2689 19.8631 4.36962L20.5345 5.71229C20.7263 6.0959 21.2737 6.0959 21.4655 5.71229L22.1369 4.36963Z" fill="#8D94A0"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<clipPath id="clip0_18424_2394">
|
|
11
|
+
<rect width="24" height="24" fill="white"/>
|
|
12
|
+
</clipPath>
|
|
13
|
+
</defs>
|
|
14
|
+
</svg>
|
package/svg/print.svg
ADDED
|
@@ -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 fill-rule="evenodd" clip-rule="evenodd" d="M20.5898 7.42969C21.0956 7.43231 21.5799 7.63462 21.9375 7.99219C22.2951 8.34981 22.4974 8.8341 22.5 9.33984V16.0195C22.5 16.5261 22.2986 17.0119 21.9404 17.3701C21.5822 17.7283 21.0964 17.9297 20.5898 17.9297H17.7998V20C17.7998 21.2148 16.8153 22.1999 15.6006 22.2002H8.40039C7.18536 22.2002 6.2002 21.215 6.2002 20V17.9297H3.41016C2.90359 17.9297 2.41776 17.7283 2.05957 17.3701C1.70143 17.0119 1.5 16.5261 1.5 16.0195V9.33984C1.50263 8.8341 1.70488 8.34981 2.0625 7.99219C2.42012 7.63462 2.90445 7.43231 3.41016 7.42969H20.5898ZM8.40039 15C8.28993 15 8.2002 15.0897 8.2002 15.2002V20C8.2002 20.1105 8.28994 20.2002 8.40039 20.2002H15.6006C15.7108 20.1999 15.7998 20.1102 15.7998 20V15.2002C15.7998 15.0899 15.7107 15.0003 15.6006 15H8.40039ZM16.4561 13.1729C16.7193 13.2842 16.9562 13.4454 17.1553 13.6445C16.9066 13.3959 16.599 13.2058 16.2549 13.0986L16.4561 13.1729Z" fill="#8D94A0"/>
|
|
3
|
+
<path d="M16.8 2H7.2C6.53726 2 6 2.53726 6 3.2V5.6C6 6.26274 6.53726 6.8 7.2 6.8H16.8C17.4627 6.8 18 6.26274 18 5.6V3.2C18 2.53726 17.4627 2 16.8 2Z" fill="#8D94A0"/>
|
|
4
|
+
</svg>
|