From 319d479b52b446da9b189910a946ce1fe7f26854 Mon Sep 17 00:00:00 2001 From: malmen237 Date: Tue, 16 Apr 2024 15:53:06 +0200 Subject: [PATCH] fix: made clear-icon a generic size --- src/assets/icons/icon.tsx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/assets/icons/icon.tsx b/src/assets/icons/icon.tsx index d37a50d5..9b0233e7 100644 --- a/src/assets/icons/icon.tsx +++ b/src/assets/icons/icon.tsx @@ -1,7 +1,7 @@ import styled from "@emotion/styled"; import MicMute from "./mic_off.svg"; import MicUnmute from "./mic_on.svg"; -import RemoveIcon from "./clear.svg"; +import RemoveSvg from "./clear.svg"; const Icon = styled.img` width: 100%; @@ -9,14 +9,8 @@ const Icon = styled.img` display: block; `; -const RemoveLineStyling = styled.img` - width: 2.5rem; -`; - export const MicMuted = () => ; export const MicUnmuted = () => ; -export const RemoveLine = () => ( - -); +export const RemoveIcon = () => ;