-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARGG-1343: add speaker mute icon (#94)
Co-authored-by: Parisa Saghafian <[email protected]>
- Loading branch information
1 parent
1579139
commit 8b3419e
Showing
16 changed files
with
70 additions
and
9 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import React from 'react'; | ||
import type { SVGProps } from 'react'; | ||
declare const SpeakerMuteIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element; | ||
export default SpeakerMuteIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React from 'react'; | ||
const SpeakerMuteIcon = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" width="1.5rem" height="1.5rem" {...props}> | ||
<path d="M5.587 16.998h-1.99C2.161 16.998 1 15.88 1 14.498V9.502C1 8.12 2.162 7 3.596 7h4.246a.9.9 0 0 0 .575-.21l5.182-4.437C14.53 1.557 16 2.194 16 3.392v3.194l4.293-4.293a1 1 0 1 1 1.414 1.414l-18 18a1 1 0 0 1-1.414-1.414zM9.764 18.362a.5.5 0 0 1-.029-.733l5.411-5.412a.5.5 0 0 1 .854.354v8.037c0 1.199-1.47 1.835-2.4 1.038zM18.017 9.347a.26.26 0 0 0-.048.293c.34.714.531 1.514.531 2.36 0 .948-.239 1.837-.66 2.614a.75.75 0 1 0 1.32.714c.536-.99.84-2.125.84-3.328s-.102-1.852-.508-2.701c-.12-.22-.293-.521-.419-.71-.068-.102-.195-.103-.282-.016z"/> | ||
<path d="M20.188 7.46a.255.255 0 0 1 .033-.317l.724-.724a.244.244 0 0 1 .377.034A9.96 9.96 0 0 1 23 12a9.96 9.96 0 0 1-1.96 5.946.75.75 0 1 1-1.205-.892A8.46 8.46 0 0 0 21.5 12c0-1.67-.481-3.227-1.312-4.54"/> | ||
</svg>); | ||
export default SpeakerMuteIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import React from 'react'; | ||
const SpeakerIcon = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" width="1.5rem" height="1.5rem" {...props}> | ||
<path d="M13.6 2.354A1.448 1.448 0 0 1 16 3.392v17.216a1.448 1.448 0 0 1-2.4 1.038L8.416 17.21a.88.88 0 0 0-.575-.21H3.596A2.55 2.55 0 0 1 1 14.5v-5A2.55 2.55 0 0 1 3.596 7h4.246a.9.9 0 0 0 .575-.21l5.182-4.437zm7.44 3.7a.75.75 0 0 0-1.205.892 8.5 8.5 0 0 1 0 10.108.75.75 0 0 0 1.206.892 10 10 0 0 0-.001-11.892"/> | ||
<path d="M19.16 8.672a.75.75 0 0 0-1.32.714 5.5 5.5 0 0 1 0 5.228.75.75 0 0 0 1.32.714 7.01 7.01 0 0 0 0-6.656"/> | ||
<path d="M13.6 2.354c.93-.797 2.4-.16 2.4 1.038v17.216c0 1.199-1.47 1.835-2.4 1.038L8.416 17.21a.88.88 0 0 0-.575-.21H3.596c-1.434 0-2.596-1.12-2.596-2.5V9.5C1 8.12 2.162 7 3.596 7h4.246a.9.9 0 0 0 .575-.21zM21.04 6.054a.75.75 0 0 0-1.205.892A8.46 8.46 0 0 1 21.5 12a8.46 8.46 0 0 1-1.665 5.054.75.75 0 0 0 1.206.892A9.96 9.96 0 0 0 23 12a9.96 9.96 0 0 0-1.96-5.946"/> | ||
<path d="M19.16 8.672a.75.75 0 0 0-1.32.714c.421.777.66 1.666.66 2.614s-.239 1.837-.66 2.614a.75.75 0 1 0 1.32.714c.536-.99.84-2.125.84-3.328a7 7 0 0 0-.84-3.328"/> | ||
</svg>); | ||
export default SpeakerIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import React from 'react'; | ||
import type { SVGProps } from 'react'; | ||
declare const SpeakerMuteIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element; | ||
export default SpeakerMuteIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React from 'react'; | ||
const SpeakerMuteIcon = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" width="1rem" height="1rem" {...props}> | ||
<path d="M5.893 17.248H3.14C1.406 17.248 0 16.073 0 14.623V9.376c0-1.45 1.406-2.625 3.141-2.625H6.63c.256 0 .504-.079.695-.221l6.271-4.659c1.126-.836 2.905-.168 2.905 1.09v3.68l4.171-4.171a.75.75 0 1 1 1.06 1.06l-18.2 18.202a.75.75 0 0 1-1.061-1.06zM9.767 19.285a.375.375 0 0 1-.041-.567l6.134-6.134a.375.375 0 0 1 .64.266v8.189c0 1.258-1.78 1.926-2.905 1.09zM20.983 7.915a.39.39 0 0 1 .04-.494l.628-.628a.363.363 0 0 1 .547.03C23.338 8.318 24 10.096 24 12c0 2.137-.832 4.113-2.24 5.709-.28.319-.818.386-1.198.15s-.46-.688-.179-1.008c1.196-1.356 1.903-3.033 1.903-4.851 0-1.489-.474-2.884-1.303-4.085"/> | ||
<path d="M18.596 9.848a.4.4 0 0 0-.08.43c.221.54.341 1.118.341 1.722 0 .91-.273 1.764-.753 2.51-.226.35-.071.786.345.975.416.19.937.06 1.162-.29.613-.951.96-2.04.96-3.195 0-.989-.254-1.93-.712-2.776a.355.355 0 0 0-.567-.072z"/> | ||
</svg>); | ||
export default SpeakerMuteIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import React from 'react'; | ||
const SpeakerIcon = (props) => (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" width="1rem" height="1rem" {...props}> | ||
<path d="M14.831.424C16.06-.53 18 .232 18 1.67v20.66c0 1.438-1.941 2.2-3.169 1.246l-6.84-5.325a1.24 1.24 0 0 0-.76-.253H3.427a3.235 3.235 0 0 1-3.427-3V9a3.235 3.235 0 0 1 3.427-3H7.23a1.25 1.25 0 0 0 .76-.252zM19.5 8.25a.75.75 0 0 1 1.5 0v7.5a.75.75 0 0 1-1.5 0zm3.75-3.75a.75.75 0 0 0-.75.75v13.5a.75.75 0 0 0 1.5 0V5.25a.75.75 0 0 0-.75-.75"/> | ||
<path d="M13.595 1.871c1.126-.836 2.905-.168 2.905 1.09V21.04c0 1.258-1.78 1.926-2.905 1.09l-6.27-4.66a1.17 1.17 0 0 0-.696-.22H3.14C1.406 17.248 0 16.072 0 14.622V9.376c0-1.45 1.406-2.625 3.141-2.625H6.63c.256 0 .504-.079.695-.221zM21.76 6.292c-.28-.32-.818-.387-1.198-.15-.38.236-.46.687-.179 1.007 1.196 1.356 1.903 3.033 1.903 4.851s-.707 3.495-1.903 4.851c-.281.32-.201.77.179 1.008.38.236.917.169 1.199-.15C23.168 16.113 24 14.137 24 12s-.832-4.113-2.24-5.708"/> | ||
<path d="M19.611 8.805c-.225-.35-.745-.48-1.162-.29-.416.189-.57.626-.346.976.481.745.754 1.6.754 2.509 0 .91-.273 1.764-.753 2.51-.226.35-.071.786.345.975.416.19.937.06 1.162-.29.613-.951.96-2.04.96-3.195a5.87 5.87 0 0 0-.96-3.195"/> | ||
</svg>); | ||
export default SpeakerIcon; |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.