Skip to content

Commit

Permalink
fix: changed svg-icons and removed unused css
Browse files Browse the repository at this point in the history
  • Loading branch information
malmen237 committed Apr 11, 2024
1 parent 2135242 commit 19649c4
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 13 deletions.
15 changes: 4 additions & 11 deletions src/assets/icons/icon.tsx
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" />;
5 changes: 5 additions & 0 deletions src/assets/icons/mic_off.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion src/assets/icons/mic_off_24dp.svg

This file was deleted.

10 changes: 10 additions & 0 deletions src/assets/icons/mic_on.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion src/assets/icons/mic_on_24dp.svg

This file was deleted.

0 comments on commit 19649c4

Please sign in to comment.