-
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.
Closes #812 Closes #815 The current UI of the Withdrawal/Deposit Initiated screen is outdated and requires content updates and a style refresh. This PR updates the content on the screen to ensure it is accurate and relevant and redesigns the screen to match the latest UI style. ## UI **Before** <img width="250" alt="Screenshot 2024-10-30 at 10 43 58" src="https://github.com/user-attachments/assets/31715d22-0578-42fc-8fe0-f6e4d86a01f4"> <img width="250" alt="Screenshot 2024-10-30 at 10 55 15" src="https://github.com/user-attachments/assets/72bb7e50-2b21-4128-af8d-92236a366622"> **After** <img width="250" alt="Screenshot 2024-10-30 at 10 50 33" src="https://github.com/user-attachments/assets/8b57485d-26b6-454b-9c22-581ea94091a8"> <img width="250" alt="Screenshot 2024-10-30 at 10 49 07" src="https://github.com/user-attachments/assets/fd9de500-4032-487b-a125-08b684605ec6">
- Loading branch information
Showing
8 changed files
with
109 additions
and
147 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,26 +1,47 @@ | ||
import React from "react" | ||
import { createIcon } from "@chakra-ui/react" | ||
|
||
export const LoadingSpinnerSuccessIcon = createIcon({ | ||
export default createIcon({ | ||
displayName: "LoadingSpinnerSuccessIcon", | ||
viewBox: "0 0 48 48", | ||
viewBox: "0 0 56 56", | ||
defaultProps: { | ||
fill: "none", | ||
}, | ||
path: [ | ||
<g filter="url(#filter0_b_55_2073)"> | ||
<circle cx="28" cy="28" r="28" fill="#33A321" fillOpacity="0.15" /> | ||
</g>, | ||
<path | ||
d="M45.75 24C45.75 26.8563 45.1874 29.6845 44.0944 32.3234C43.0013 34.9622 41.3992 37.3599 39.3796 39.3796C37.3599 41.3992 34.9622 43.0013 32.3234 44.0944C29.6845 45.1874 26.8562 45.75 24 45.75C21.1437 45.75 18.3155 45.1874 15.6766 44.0944C13.0378 43.0013 10.6401 41.3992 8.62042 39.3796C6.60075 37.3599 4.99866 34.9622 3.90562 32.3234C2.81258 29.6845 2.25 26.8562 2.25 24C2.25 21.1437 2.81258 18.3155 3.90562 15.6766C4.99866 13.0378 6.60076 10.6401 8.62043 8.62042C10.6401 6.60075 13.0378 4.99866 15.6766 3.90562C18.3155 2.81258 21.1438 2.25 24 2.25C26.8563 2.25 29.6845 2.81258 32.3234 3.90562C34.9622 4.99867 37.3599 6.60076 39.3796 8.62044C41.3993 10.6401 43.0013 13.0378 44.0944 15.6766C45.1874 18.3155 45.75 21.1438 45.75 24L45.75 24Z" | ||
stroke="#EDD8A2" | ||
strokeWidth="3" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/>, | ||
<path | ||
d="M31.2008 19.2002L21.6008 28.8002L16.8008 24.4002" | ||
stroke="#318401" | ||
d="M37 22L25 34L19 28.5" | ||
stroke="#33A321" | ||
strokeWidth="3" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/>, | ||
<defs> | ||
<filter | ||
id="filter0_b_55_2073" | ||
x="-16" | ||
y="-16" | ||
width="88" | ||
height="88" | ||
filterUnits="userSpaceOnUse" | ||
colorInterpolationFilters="sRGB" | ||
> | ||
<feFlood floodOpacity="0" result="BackgroundImageFix" /> | ||
<feGaussianBlur in="BackgroundImageFix" stdDeviation="8" /> | ||
<feComposite | ||
in2="SourceAlpha" | ||
operator="in" | ||
result="effect1_backgroundBlur_55_2073" | ||
/> | ||
<feBlend | ||
mode="normal" | ||
in="SourceGraphic" | ||
in2="effect1_backgroundBlur_55_2073" | ||
result="shape" | ||
/> | ||
</filter> | ||
</defs>, | ||
], | ||
}) |
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
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
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
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
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
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
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