@teamturing/icons 1.9.0 → 1.11.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/SoundOn.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +22 -0
- package/esm/SoundOn.js +25 -0
- package/esm/index.js +1 -0
- package/package.json +2 -2
- package/svg/sound_on.svg +5 -0
package/dist/index.d.ts
CHANGED
|
@@ -144,6 +144,7 @@ export { default as SirenIcon } from './Siren';
|
|
|
144
144
|
export { default as SkipbackIcon } from './Skipback';
|
|
145
145
|
export { default as SkipforwardIcon } from './Skipforward';
|
|
146
146
|
export { default as SoundOffIcon } from './SoundOff';
|
|
147
|
+
export { default as SoundOnIcon } from './SoundOn';
|
|
147
148
|
export { default as SpeakerIcon } from './Speaker';
|
|
148
149
|
export { default as StackupIcon } from './Stackup';
|
|
149
150
|
export { default as StarIcon } from './Star';
|
package/dist/index.js
CHANGED
|
@@ -2420,6 +2420,27 @@ const SvgSoundOff = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
2420
2420
|
d: "M16.894 5.553a1 1 0 0 0-1.788.894l3.026 6.053-3.026 6.053a1 1 0 1 0 1.789.894l2.355-4.71 2.355 4.71a1 1 0 0 0 1.79-.894L20.367 12.5l3.027-6.053a1 1 0 0 0-1.79-.894l-2.355 4.711-2.356-4.711ZM1 16.487V8.693c0-.43.349-.78.78-.78h3.184a.78.78 0 0 0 .55-.227l5.457-5.456a.78.78 0 0 1 1.33.55v19.303a.78.78 0 0 1-1.314.567l-5.475-5.17a.78.78 0 0 0-.535-.213H1.779a.78.78 0 0 1-.779-.78Z"
|
|
2421
2421
|
}));
|
|
2422
2422
|
|
|
2423
|
+
const SvgSoundOn = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2424
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2425
|
+
width: "1em",
|
|
2426
|
+
height: "1em",
|
|
2427
|
+
fill: "none",
|
|
2428
|
+
viewBox: "0 0 24 24"
|
|
2429
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2430
|
+
fill: "currentColor",
|
|
2431
|
+
d: "M1 16.588V8.794c0-.43.349-.78.78-.78h3.184a.78.78 0 0 0 .55-.228l5.457-5.456a.78.78 0 0 1 1.33.552v19.302a.78.78 0 0 1-1.314.566l-5.475-5.17a.78.78 0 0 0-.535-.213H1.779a.78.78 0 0 1-.779-.78Z"
|
|
2432
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2433
|
+
fill: "currentColor",
|
|
2434
|
+
fillRule: "evenodd",
|
|
2435
|
+
d: "M17.585 12.463a3.083 3.083 0 0 0-1.918-2.855.957.957 0 0 1 .724-1.771 4.997 4.997 0 0 1 0 9.251.956.956 0 1 1-.724-1.77 3.083 3.083 0 0 0 1.918-2.855Z",
|
|
2436
|
+
clipRule: "evenodd"
|
|
2437
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2438
|
+
fill: "currentColor",
|
|
2439
|
+
fillRule: "evenodd",
|
|
2440
|
+
d: "M22.044 12.424a6.677 6.677 0 0 0-4.12-6.183.956.956 0 0 1 .728-1.769 8.59 8.59 0 0 1 5.305 7.952 8.59 8.59 0 0 1-5.305 7.953.956.956 0 1 1-.728-1.77 6.678 6.678 0 0 0 4.12-6.183Z",
|
|
2441
|
+
clipRule: "evenodd"
|
|
2442
|
+
}));
|
|
2443
|
+
|
|
2423
2444
|
const SvgSpeaker = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2424
2445
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2425
2446
|
width: "1em",
|
|
@@ -2987,6 +3008,7 @@ exports.SirenIcon = SvgSiren;
|
|
|
2987
3008
|
exports.SkipbackIcon = SvgSkipback;
|
|
2988
3009
|
exports.SkipforwardIcon = SvgSkipforward;
|
|
2989
3010
|
exports.SoundOffIcon = SvgSoundOff;
|
|
3011
|
+
exports.SoundOnIcon = SvgSoundOn;
|
|
2990
3012
|
exports.SpeakerIcon = SvgSpeaker;
|
|
2991
3013
|
exports.StackupIcon = SvgStackup;
|
|
2992
3014
|
exports.StarIcon = SvgStar;
|
package/esm/SoundOn.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgSoundOn = 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: "M1 16.588V8.794c0-.43.349-.78.78-.78h3.184a.78.78 0 0 0 .55-.228l5.457-5.456a.78.78 0 0 1 1.33.552v19.302a.78.78 0 0 1-1.314.566l-5.475-5.17a.78.78 0 0 0-.535-.213H1.779a.78.78 0 0 1-.779-.78Z"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
d: "M17.585 12.463a3.083 3.083 0 0 0-1.918-2.855.957.957 0 0 1 .724-1.771 4.997 4.997 0 0 1 0 9.251.956.956 0 1 1-.724-1.77 3.083 3.083 0 0 0 1.918-2.855Z",
|
|
17
|
+
clipRule: "evenodd"
|
|
18
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
19
|
+
fill: "currentColor",
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
d: "M22.044 12.424a6.677 6.677 0 0 0-4.12-6.183.956.956 0 0 1 .728-1.769 8.59 8.59 0 0 1 5.305 7.952 8.59 8.59 0 0 1-5.305 7.953.956.956 0 1 1-.728-1.77 6.678 6.678 0 0 0 4.12-6.183Z",
|
|
22
|
+
clipRule: "evenodd"
|
|
23
|
+
}));
|
|
24
|
+
|
|
25
|
+
export { SvgSoundOn as default };
|
package/esm/index.js
CHANGED
|
@@ -144,6 +144,7 @@ export { default as SirenIcon } from './Siren.js';
|
|
|
144
144
|
export { default as SkipbackIcon } from './Skipback.js';
|
|
145
145
|
export { default as SkipforwardIcon } from './Skipforward.js';
|
|
146
146
|
export { default as SoundOffIcon } from './SoundOff.js';
|
|
147
|
+
export { default as SoundOnIcon } from './SoundOn.js';
|
|
147
148
|
export { default as SpeakerIcon } from './Speaker.js';
|
|
148
149
|
export { default as StackupIcon } from './Stackup.js';
|
|
149
150
|
export { default as StarIcon } from './Star.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.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",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"react": "^18.2.0"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "767de79d7913e95e69e0a58dcd75f1a88b8e2add"
|
|
37
37
|
}
|
package/svg/sound_on.svg
ADDED
|
@@ -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="M1 16.5878V8.79387C1 8.36343 1.34894 8.01448 1.77939 8.01448H4.9638C5.17051 8.01448 5.36875 7.93237 5.51491 7.78621L10.9706 2.33049C11.4616 1.8395 12.3011 2.18723 12.3011 2.8816V22.1838C12.3011 22.8675 11.4836 23.2199 10.9866 22.7505L5.51191 17.5799C5.36723 17.4433 5.17577 17.3672 4.97676 17.3672H1.77939C1.34894 17.3672 1 17.0182 1 16.5878Z" fill="#8D94A0"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.5848 12.4625C17.5848 11.174 16.7938 10.068 15.6673 9.60777C15.1783 9.40799 14.9438 8.8496 15.1436 8.36055C15.3433 7.87151 15.9017 7.63702 16.3908 7.8368C18.2118 8.58071 19.4979 10.3703 19.4979 12.4625C19.4979 14.5548 18.2118 16.3444 16.3908 17.0883C15.9017 17.2881 15.3433 17.0536 15.1436 16.5645C14.9438 16.0755 15.1783 15.5171 15.6673 15.3173C16.7938 14.8571 17.5848 13.7511 17.5848 12.4625Z" fill="#8D94A0"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.0435 12.4244C22.0435 9.62784 20.3391 7.23521 17.9242 6.24127C17.4357 6.04021 17.2027 5.48119 17.4038 4.99268C17.6048 4.50417 18.1638 4.27115 18.6523 4.47221C21.7656 5.75358 23.9566 8.83259 23.9566 12.4244C23.9566 16.0162 21.7656 19.0952 18.6523 20.3765C18.1638 20.5776 17.6048 20.3446 17.4038 19.8561C17.2027 19.3676 17.4357 18.8085 17.9242 18.6075C20.3391 17.6135 22.0435 15.2209 22.0435 12.4244Z" fill="#8D94A0"/>
|
|
5
|
+
</svg>
|