@teamturing/icons 1.10.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/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.10.0",
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": "3b8e3fce5bc352e8d95f246c4eb1d21214a9cfde"
36
+ "gitHead": "767de79d7913e95e69e0a58dcd75f1a88b8e2add"
37
37
  }