File tree Expand file tree Collapse file tree 1 file changed +8
-16
lines changed
apps/namadillo/src/App/Transfer Expand file tree Collapse file tree 1 file changed +8
-16
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ import { useEffect, useState } from "react";
7
7
import { GoChevronDown } from "react-icons/go" ;
8
8
import { AddressWithAssetAndAmount } from "types" ;
9
9
import NamadaLogo from "../Assets/NamadaLogo.svg" ;
10
- import { SelectToken } from "./SelectToken" ;
11
10
import { isTransparentAddress } from "./common" ;
11
+ import { SelectToken } from "./SelectToken" ;
12
+ import { TransferArrow } from "./TransferArrow" ;
12
13
13
14
export const ShieldTransferCard = ( ) : JSX . Element => {
14
15
const transparentAssets = useAtomValue ( namadaTransparentAssetsAtom ) ;
@@ -163,23 +164,14 @@ export const ShieldTransferCard = (): JSX.Element => {
163
164
{ /* Transfer arrow */ }
164
165
< div className = "flex justify-center my-4" >
165
166
< div
166
- className = { `w-12 h-12 rounded-full flex items-center justify-center ${
167
- selectedMode === "shielded" ? "bg-yellow-400" : "bg-white"
168
- } `}
167
+ className = { `w-12 h-12 rounded-full flex items-center justify-center -mt-7 bg-yellow-400` }
169
168
>
170
- < svg
171
- className = "w-6 h-6 text-black"
172
- fill = "none"
173
- viewBox = "0 0 24 24"
174
- stroke = "currentColor"
175
- >
176
- < path
177
- strokeLinecap = "round"
178
- strokeLinejoin = "round"
179
- strokeWidth = { 2 }
180
- d = "M19 14l-7 7m0 0l-7-7m7 7V3"
169
+ < i className = "flex items-center justify-center w-11 mx-auto -my-8 relative z-10" >
170
+ < TransferArrow
171
+ color = "#FF0"
172
+ // isAnimating={isSubmitting}
181
173
/>
182
- </ svg >
174
+ </ i >
183
175
</ div >
184
176
</ div >
185
177
You can’t perform that action at this time.
0 commit comments