@teamturing/icons 1.35.1 → 1.36.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/Pill.d.ts +3 -0
- package/dist/PillColor.d.ts +3 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +38 -1
- package/esm/Note.js +1 -1
- package/esm/Pill.js +25 -0
- package/esm/PillColor.js +18 -0
- package/esm/index.js +2 -0
- package/package.json +2 -2
- package/svg/note.svg +1 -1
- package/svg/pill.svg +11 -0
- package/svg/pill_color.svg +4 -0
package/dist/Pill.d.ts
ADDED
package/dist/index.d.ts
CHANGED
|
@@ -144,6 +144,8 @@ export { default as PauseIcon } from './Pause';
|
|
|
144
144
|
export { default as PenIcon } from './Pen';
|
|
145
145
|
export { default as PercentInCircleIcon } from './PercentInCircle';
|
|
146
146
|
export { default as PictureIcon } from './Picture';
|
|
147
|
+
export { default as PillIcon } from './Pill';
|
|
148
|
+
export { default as PillColorIcon } from './PillColor';
|
|
147
149
|
export { default as PinIcon } from './Pin';
|
|
148
150
|
export { default as PinColorRedIcon } from './PinColorRed';
|
|
149
151
|
export { default as PlayIcon } from './Play';
|
package/dist/index.js
CHANGED
|
@@ -1928,7 +1928,7 @@ const SvgNote = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
1928
1928
|
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
1929
1929
|
fill: "currentColor",
|
|
1930
1930
|
fillRule: "evenodd",
|
|
1931
|
-
d: "
|
|
1931
|
+
d: "M4.5 2h15a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1h-15a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1ZM7 6a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2H7Zm0 4a1 1 0 1 0 0 2h10a1 1 0 1 0 0-2H7Z",
|
|
1932
1932
|
clipRule: "evenodd"
|
|
1933
1933
|
}));
|
|
1934
1934
|
|
|
@@ -2340,6 +2340,41 @@ const SvgPicture = props => /*#__PURE__*/React__namespace.createElement("svg", _
|
|
|
2340
2340
|
clipRule: "evenodd"
|
|
2341
2341
|
}));
|
|
2342
2342
|
|
|
2343
|
+
const SvgPill = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2344
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2345
|
+
width: "1em",
|
|
2346
|
+
height: "1em",
|
|
2347
|
+
fill: "none",
|
|
2348
|
+
viewBox: "0 0 24 24"
|
|
2349
|
+
}, props), /*#__PURE__*/React__namespace.createElement("g", {
|
|
2350
|
+
fill: "currentColor",
|
|
2351
|
+
clipPath: "url(#pill_svg__a)"
|
|
2352
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
2353
|
+
d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z",
|
|
2354
|
+
opacity: 0.4
|
|
2355
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2356
|
+
d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
|
|
2357
|
+
})), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
2358
|
+
id: "pill_svg__a"
|
|
2359
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
2360
|
+
fill: "#fff",
|
|
2361
|
+
d: "M0 0h24v24H0z"
|
|
2362
|
+
}))));
|
|
2363
|
+
|
|
2364
|
+
const SvgPillColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2365
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2366
|
+
width: "1em",
|
|
2367
|
+
height: "1em",
|
|
2368
|
+
fill: "none",
|
|
2369
|
+
viewBox: "0 0 24 24"
|
|
2370
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2371
|
+
fill: "#D9CDF9",
|
|
2372
|
+
d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z"
|
|
2373
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2374
|
+
fill: "#9C7EEF",
|
|
2375
|
+
d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
|
|
2376
|
+
}));
|
|
2377
|
+
|
|
2343
2378
|
const SvgPin = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2344
2379
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2345
2380
|
width: "1em",
|
|
@@ -3666,6 +3701,8 @@ exports.PauseIcon = SvgPause;
|
|
|
3666
3701
|
exports.PenIcon = SvgPen;
|
|
3667
3702
|
exports.PercentInCircleIcon = SvgPercentInCircle;
|
|
3668
3703
|
exports.PictureIcon = SvgPicture;
|
|
3704
|
+
exports.PillColorIcon = SvgPillColor;
|
|
3705
|
+
exports.PillIcon = SvgPill;
|
|
3669
3706
|
exports.PinColorRedIcon = SvgPinColorRed;
|
|
3670
3707
|
exports.PinIcon = SvgPin;
|
|
3671
3708
|
exports.PlayIcon = SvgPlay;
|
package/esm/Note.js
CHANGED
|
@@ -10,7 +10,7 @@ const SvgNote = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
|
10
10
|
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
11
|
fill: "currentColor",
|
|
12
12
|
fillRule: "evenodd",
|
|
13
|
-
d: "
|
|
13
|
+
d: "M4.5 2h15a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1h-15a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1ZM7 6a1 1 0 0 0 0 2h5a1 1 0 1 0 0-2H7Zm0 4a1 1 0 1 0 0 2h10a1 1 0 1 0 0-2H7Z",
|
|
14
14
|
clipRule: "evenodd"
|
|
15
15
|
}));
|
|
16
16
|
|
package/esm/Pill.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgPill = 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(#pill_svg__a)"
|
|
13
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z",
|
|
15
|
+
opacity: 0.4
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
|
|
18
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
19
|
+
id: "pill_svg__a"
|
|
20
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fill: "#fff",
|
|
22
|
+
d: "M0 0h24v24H0z"
|
|
23
|
+
}))));
|
|
24
|
+
|
|
25
|
+
export { SvgPill as default };
|
package/esm/PillColor.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgPillColor = 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: "#D9CDF9",
|
|
12
|
+
d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fill: "#9C7EEF",
|
|
15
|
+
d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
|
|
16
|
+
}));
|
|
17
|
+
|
|
18
|
+
export { SvgPillColor as default };
|
package/esm/index.js
CHANGED
|
@@ -144,6 +144,8 @@ export { default as PauseIcon } from './Pause.js';
|
|
|
144
144
|
export { default as PenIcon } from './Pen.js';
|
|
145
145
|
export { default as PercentInCircleIcon } from './PercentInCircle.js';
|
|
146
146
|
export { default as PictureIcon } from './Picture.js';
|
|
147
|
+
export { default as PillIcon } from './Pill.js';
|
|
148
|
+
export { default as PillColorIcon } from './PillColor.js';
|
|
147
149
|
export { default as PinIcon } from './Pin.js';
|
|
148
150
|
export { default as PinColorRedIcon } from './PinColorRed.js';
|
|
149
151
|
export { default as PlayIcon } from './Play.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.36.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": "5b704056b9e72d0d0e928ae924f5ce5221a35810"
|
|
42
42
|
}
|
package/svg/note.svg
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
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="
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 2H19.5C20.0523 2 20.5 2.44772 20.5 3V21C20.5 21.5523 20.0523 22 19.5 22H4.5C3.94772 22 3.5 21.5523 3.5 21V3C3.5 2.44772 3.94772 2 4.5 2ZM7 6C6.44772 6 6 6.44772 6 7C6 7.55228 6.44772 8 7 8H12C12.5523 8 13 7.55228 13 7C13 6.44772 12.5523 6 12 6H7ZM7 10C6.44772 10 6 10.4477 6 11C6 11.5523 6.44772 12 7 12H17C17.5523 12 18 11.5523 18 11C18 10.4477 17.5523 10 17 10H7Z" fill="#8D94A0"/>
|
|
3
3
|
</svg>
|
package/svg/pill.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_16169_56)">
|
|
3
|
+
<path opacity="0.4" d="M12 3.99994C14.2091 1.7908 17.7909 1.7908 20 3.99994C22.2091 6.20908 22.2091 9.7908 20 11.9999L16 15.9999L8 7.99994L12 3.99994Z" fill="#8D94A0"/>
|
|
4
|
+
<path d="M8 7.99994L16 15.9999L12 19.9999C9.79086 22.2091 6.20914 22.2091 4 19.9999C1.79086 17.7908 1.79086 14.2091 4 11.9999L8 7.99994Z" fill="#8D94A0"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_16169_56">
|
|
8
|
+
<rect width="24" height="24" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -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 d="M12 3.99993C14.2091 1.79079 17.7909 1.79079 20 3.99993C22.2091 6.20907 22.2091 9.7908 20 11.9999L16 15.9999L7.99999 7.99993L12 3.99993Z" fill="#D9CDF9"/>
|
|
3
|
+
<path d="M7.99999 7.99993L16 15.9999L12 19.9999C9.79085 22.2091 6.20913 22.2091 3.99999 19.9999C1.79085 17.7908 1.79086 14.2091 3.99999 11.9999L7.99999 7.99993Z" fill="#9C7EEF"/>
|
|
4
|
+
</svg>
|