Skip to content

Commit

Permalink
fix: cleaned the svg-files, added color and added css
Browse files Browse the repository at this point in the history
  • Loading branch information
malmen237 committed Apr 12, 2024
1 parent 849122f commit b73fd76
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
10 changes: 8 additions & 2 deletions src/assets/icons/icon.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import styled from "@emotion/styled";
import MicMute from "./mic_off.svg";
import MicUnmute from "./mic_on.svg";

export const MicMuted = () => <img src={MicMute} alt="off-microphone" />;
const Icon = styled.img`
width: 8rem;
padding-right: 1em;
`;

export const MicUnmuted = () => <img src={MicUnmute} alt="on-microphone" />;
export const MicMuted = () => <Icon src={MicMute} alt="off-microphone" />;

export const MicUnmuted = () => <Icon src={MicUnmute} alt="on-microphone" />;
8 changes: 4 additions & 4 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.
17 changes: 8 additions & 9 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.

0 comments on commit b73fd76

Please sign in to comment.