Skip to content

Commit

Permalink
fixed the icons in deactibate channel modal (#1671)
Browse files Browse the repository at this point in the history
  • Loading branch information
mishramonalisha76 authored and corlard3y committed Jul 1, 2024
1 parent db57bfd commit db4a59e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/ChannelDeactivateModalContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,14 @@ const ChannelDeactivateModalContent = ({ onConfirm, onClose, toastObject }: Moda
Are you sure you want to deactivate the channel? You will no longer be able to send notifications from it.
</ModalMessage>
<ButtonContainer>
<CloseButtonSVG
src={CloseButtonSvg}
<CloseButtonSvg
width={36}
height={36}
onClick={handleClose}
/>

<BellIconContainer onClick={handleConfirm}>
<BellIconImage src={BellIconSvg} />
<BellIconSvg />
</BellIconContainer>
</ButtonContainer>
</>
Expand Down Expand Up @@ -197,6 +198,7 @@ const BellIconContainer = styled.div`
height: 36px;
background: #e93636;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
cursor: pointer;
Expand Down

0 comments on commit db4a59e

Please sign in to comment.