@teamturing/icons 1.45.0 → 1.46.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/index.d.ts +1 -0
- package/dist/index.js +19 -0
- package/esm/MagicWand.js +22 -0
- package/esm/index.js +1 -0
- package/package.json +2 -2
- package/svg/magic_wand.svg +14 -0
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';
|
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",
|
|
@@ -3791,6 +3809,7 @@ exports.LogoColorIcon = SvgLogoColor;
|
|
|
3791
3809
|
exports.LogoFacebookIcon = SvgLogoFacebook;
|
|
3792
3810
|
exports.LogoKakaoIcon = SvgLogoKakao;
|
|
3793
3811
|
exports.LogoNaverIcon = SvgLogoNaver;
|
|
3812
|
+
exports.MagicWandIcon = SvgMagicWand;
|
|
3794
3813
|
exports.MaxsizeIcon = SvgMaxsize;
|
|
3795
3814
|
exports.MinsizeIcon = SvgMinsize;
|
|
3796
3815
|
exports.MinusIcon = SvgMinus;
|
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/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';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.46.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": "62237375bae90ff6987ee5eb683db603849d6e4f"
|
|
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>
|