@teamturing/icons 1.67.0 → 1.68.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/InkPenTwinkle.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +12 -0
- package/esm/InkPenTwinkle.js +15 -0
- package/esm/index.js +1 -0
- package/package.json +2 -2
- package/svg/ink_pen_twinkle.svg +5 -0
package/dist/index.d.ts
CHANGED
|
@@ -124,6 +124,7 @@ export { default as HeartIcon } from './Heart';
|
|
|
124
124
|
export { default as HomeIcon } from './Home';
|
|
125
125
|
export { default as InfiniteIcon } from './Infinite';
|
|
126
126
|
export { default as InfoInCircleIcon } from './InfoInCircle';
|
|
127
|
+
export { default as InkPenTwinkleIcon } from './InkPenTwinkle';
|
|
127
128
|
export { default as InstagramIcon } from './Instagram';
|
|
128
129
|
export { default as KakaoColorIcon } from './KakaoColor';
|
|
129
130
|
export { default as KeyboardDownIcon } from './KeyboardDown';
|
package/dist/index.js
CHANGED
|
@@ -1904,6 +1904,17 @@ const SvgInfoInCircle = props => /*#__PURE__*/React__namespace.createElement("sv
|
|
|
1904
1904
|
clipRule: "evenodd"
|
|
1905
1905
|
}));
|
|
1906
1906
|
|
|
1907
|
+
const SvgInkPenTwinkle = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1908
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1909
|
+
width: "1em",
|
|
1910
|
+
height: "1em",
|
|
1911
|
+
fill: "none",
|
|
1912
|
+
viewBox: "0 0 24 24"
|
|
1913
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
1914
|
+
fill: "currentColor",
|
|
1915
|
+
d: "M18.212 3.517c.824-.025 1.363.158 1.955.75.357.366.741.737 1.09 1.11.831.9 1.89 1.472 1.918 2.828.03 1.44-1.062 2.08-1.97 2.998-.374.378-.757.793-1.128 1.186l-.434-.428c-.78-.86-1.33-1.339-2.127-2.128l-3.248-3.245c.362-.296.953-.88 1.287-1.213.895-.892 1.32-1.726 2.657-1.858ZM6.888 7.646a.576.576 0 0 1 .258-.258l2.39-1.195a.576.576 0 0 0 0-1.031l-2.39-1.195a.576.576 0 0 1-.258-.258l-1.195-2.39a.576.576 0 0 0-1.031 0l-1.195 2.39a.576.576 0 0 1-.258.258L.819 5.162a.576.576 0 0 0 0 1.03l2.39 1.196a.576.576 0 0 1 .258.258l1.195 2.39a.576.576 0 0 0 1.03 0l1.196-2.39ZM13.033 7.178c.148.013 1.386 1.402 1.608 1.628l3.24 3.246c.533.53 1.07.994 1.616 1.55-.147.467-.282 1.069-.409 1.551a80.427 80.427 0 0 1-.872 3.116c-.11.354-.227.799-.391 1.125-.097.102-.392.22-.53.254-1.99.482-3.953 1.011-5.926 1.548-1.76.48-3.56.85-5.322 1.328a.698.698 0 0 1-.465-.04c-.244-.257-.094-.398.112-.592.219-.208.455-.41.667-.623l3.123-3.124c.405-.41.77-.846 1.191-1.265.08-.08.652-.681.702-.676.7.076 1.295.078 1.755-.559.238-.332.332-.748.261-1.15a1.504 1.504 0 0 0-.634-.996 1.49 1.49 0 0 0-1.134-.243 1.514 1.514 0 0 0-.959.653c-.301.457-.288.872-.19 1.376-.66.698-1.297 1.23-1.946 1.873L5.323 20.36c-.28.28-.667.963-1.051.812-.175-.18-.153-.453-.104-.683.15-.696.366-1.383.537-2.073l1.423-5.502c.042-.162.112-.46.199-.825a2.538 2.538 0 0 0 1.155-1.157l.982-1.967 1.967-.983c.125-.062.24-.133.349-.21.754-.195 1.51-.384 2.253-.593Z"
|
|
1916
|
+
}));
|
|
1917
|
+
|
|
1907
1918
|
const SvgInstagram = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1908
1919
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1909
1920
|
width: "1em",
|
|
@@ -4342,6 +4353,7 @@ exports.HeartIcon = SvgHeart;
|
|
|
4342
4353
|
exports.HomeIcon = SvgHome;
|
|
4343
4354
|
exports.InfiniteIcon = SvgInfinite;
|
|
4344
4355
|
exports.InfoInCircleIcon = SvgInfoInCircle;
|
|
4356
|
+
exports.InkPenTwinkleIcon = SvgInkPenTwinkle;
|
|
4345
4357
|
exports.InstagramIcon = SvgInstagram;
|
|
4346
4358
|
exports.KakaoColorIcon = SvgKakaoColor;
|
|
4347
4359
|
exports.KeyboardDownIcon = SvgKeyboardDown;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgInkPenTwinkle = 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: "M18.212 3.517c.824-.025 1.363.158 1.955.75.357.366.741.737 1.09 1.11.831.9 1.89 1.472 1.918 2.828.03 1.44-1.062 2.08-1.97 2.998-.374.378-.757.793-1.128 1.186l-.434-.428c-.78-.86-1.33-1.339-2.127-2.128l-3.248-3.245c.362-.296.953-.88 1.287-1.213.895-.892 1.32-1.726 2.657-1.858ZM6.888 7.646a.576.576 0 0 1 .258-.258l2.39-1.195a.576.576 0 0 0 0-1.031l-2.39-1.195a.576.576 0 0 1-.258-.258l-1.195-2.39a.576.576 0 0 0-1.031 0l-1.195 2.39a.576.576 0 0 1-.258.258L.819 5.162a.576.576 0 0 0 0 1.03l2.39 1.196a.576.576 0 0 1 .258.258l1.195 2.39a.576.576 0 0 0 1.03 0l1.196-2.39ZM13.033 7.178c.148.013 1.386 1.402 1.608 1.628l3.24 3.246c.533.53 1.07.994 1.616 1.55-.147.467-.282 1.069-.409 1.551a80.427 80.427 0 0 1-.872 3.116c-.11.354-.227.799-.391 1.125-.097.102-.392.22-.53.254-1.99.482-3.953 1.011-5.926 1.548-1.76.48-3.56.85-5.322 1.328a.698.698 0 0 1-.465-.04c-.244-.257-.094-.398.112-.592.219-.208.455-.41.667-.623l3.123-3.124c.405-.41.77-.846 1.191-1.265.08-.08.652-.681.702-.676.7.076 1.295.078 1.755-.559.238-.332.332-.748.261-1.15a1.504 1.504 0 0 0-.634-.996 1.49 1.49 0 0 0-1.134-.243 1.514 1.514 0 0 0-.959.653c-.301.457-.288.872-.19 1.376-.66.698-1.297 1.23-1.946 1.873L5.323 20.36c-.28.28-.667.963-1.051.812-.175-.18-.153-.453-.104-.683.15-.696.366-1.383.537-2.073l1.423-5.502c.042-.162.112-.46.199-.825a2.538 2.538 0 0 0 1.155-1.157l.982-1.967 1.967-.983c.125-.062.24-.133.349-.21.754-.195 1.51-.384 2.253-.593Z"
|
|
13
|
+
}));
|
|
14
|
+
|
|
15
|
+
export { SvgInkPenTwinkle as default };
|
package/esm/index.js
CHANGED
|
@@ -124,6 +124,7 @@ export { default as HeartIcon } from './Heart.js';
|
|
|
124
124
|
export { default as HomeIcon } from './Home.js';
|
|
125
125
|
export { default as InfiniteIcon } from './Infinite.js';
|
|
126
126
|
export { default as InfoInCircleIcon } from './InfoInCircle.js';
|
|
127
|
+
export { default as InkPenTwinkleIcon } from './InkPenTwinkle.js';
|
|
127
128
|
export { default as InstagramIcon } from './Instagram.js';
|
|
128
129
|
export { default as KakaoColorIcon } from './KakaoColor.js';
|
|
129
130
|
export { default as KeyboardDownIcon } from './KeyboardDown.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.68.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": "d98cec98136950ad72ca2526fd93bb8b5ec5a0ee"
|
|
44
44
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18.2118 3.51672C19.0358 3.49244 19.5746 3.67461 20.1666 4.26646C20.524 4.63285 20.9084 5.00424 21.2573 5.37706C22.0881 6.27659 23.1472 6.84917 23.1752 8.20476C23.2049 9.6459 22.1129 10.2856 21.2055 11.2025C20.8307 11.5813 20.4483 11.9961 20.0765 12.3891L19.6429 11.9608C18.8622 11.1004 18.3125 10.622 17.5156 9.8328L14.2678 6.58753C14.6304 6.29229 15.2206 5.70767 15.5548 5.37455C16.4495 4.4827 16.8757 3.64854 18.2118 3.51672Z" fill="#8D94A0"/>
|
|
3
|
+
<path d="M6.88787 7.64567C6.94365 7.53411 7.03411 7.44365 7.14567 7.38787L9.5358 6.19281C9.96066 5.98038 9.96067 5.37407 9.5358 5.16164L7.14567 3.96657C7.03411 3.91079 6.94365 3.82034 6.88787 3.70878L5.69281 1.31865C5.48038 0.893784 4.87407 0.893783 4.66164 1.31865L3.46657 3.70878C3.41079 3.82034 3.32034 3.91079 3.20878 3.96657L0.81865 5.16164C0.393784 5.37407 0.393783 5.98038 0.81865 6.19281L3.20878 7.38787C3.32034 7.44365 3.41079 7.53411 3.46657 7.64567L4.66164 10.0358C4.87407 10.4607 5.48038 10.4607 5.69281 10.0358L6.88787 7.64567Z" fill="#8D94A0"/>
|
|
4
|
+
<path d="M13.0326 7.17773C13.1805 7.19135 14.419 8.58046 14.641 8.80566L17.8813 12.0518C18.4143 12.5823 18.9506 13.0463 19.4965 13.6025C19.3496 14.0695 19.2149 14.6708 19.0883 15.1533C18.8185 16.1973 18.5278 17.2362 18.2162 18.2686C18.1063 18.6226 17.9894 19.0675 17.8246 19.3936C17.728 19.4958 17.4334 19.6147 17.2943 19.6484C15.3057 20.1303 13.342 20.659 11.3695 21.1963C9.60953 21.6757 7.80926 22.0455 6.04727 22.5244C5.90815 22.5622 5.71188 22.5523 5.58242 22.4834C5.33788 22.2266 5.488 22.0865 5.69375 21.8916C5.913 21.6839 6.14861 21.4825 6.36074 21.2686L9.48379 18.1445C9.88865 17.7358 10.2542 17.2991 10.6752 16.8799C10.7553 16.8006 11.3269 16.1986 11.3773 16.2041C12.0762 16.2803 12.6725 16.2815 13.1322 15.6455C13.3703 15.3126 13.4645 14.8972 13.393 14.4941C13.3261 14.0899 13.0972 13.7306 12.7592 13.499C12.4254 13.2712 12.0239 13.1772 11.6254 13.2559C11.2317 13.3378 10.8865 13.5725 10.6664 13.9092C10.3646 14.3663 10.3778 14.7814 10.476 15.2852C9.81614 15.9828 9.17891 16.5143 8.52969 17.1582L5.32266 20.3594C5.04302 20.6386 4.65614 21.3223 4.27188 21.1709C4.09671 20.9912 4.1187 20.7183 4.16836 20.4883C4.31876 19.7917 4.53399 19.1049 4.70547 18.415L6.12832 12.9131C6.17039 12.7515 6.23979 12.4528 6.32656 12.0879C6.79971 11.855 7.21205 11.47 7.48184 10.9307L8.46426 8.96387L10.4311 7.98145C10.5557 7.91907 10.6714 7.84804 10.7797 7.77148C11.5343 7.57604 12.2904 7.38679 13.0326 7.17773Z" fill="#8D94A0"/>
|
|
5
|
+
</svg>
|