-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: changed svg-icons and removed unused css
- Loading branch information
Showing
5 changed files
with
19 additions
and
13 deletions.
There are no files selected for viewing
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,13 +1,6 @@ | ||
import styled from "@emotion/styled"; | ||
import MicMute from "./mic_off_24dp.svg"; | ||
import MicUnmute from "./mic_on_24dp.svg"; | ||
import MicMute from "./mic_off.svg"; | ||
import MicUnmute from "./mic_on.svg"; | ||
|
||
const Icon = styled.img` | ||
width: 5rem; | ||
padding-right: 1em; | ||
pointer-events: none; | ||
`; | ||
export const MicMuted = () => <img src={MicMute} alt="off-microphone" />; | ||
|
||
export const MicMuted = () => <Icon src={MicMute} alt="red-microphone" />; | ||
|
||
export const MicUnmuted = () => <Icon src={MicUnmute} alt="green-microphone" />; | ||
export const MicUnmuted = () => <img src={MicUnmute} alt="on-microphone" />; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
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.
This file was deleted.
Oops, something went wrong.