@@ -18,7 +18,11 @@ import {
1818 keplrCurrencyFromNativeCurrencyInfo ,
1919} from "../../networks" ;
2020import { neutral77 , primaryColor } from "../../utils/style/colors" ;
21- import { fontSemibold13 , fontSemibold14 } from "../../utils/style/fonts" ;
21+ import {
22+ fontRegular13 ,
23+ fontRegular14 ,
24+ fontRegular16 ,
25+ } from "../../utils/style/fonts" ;
2226import { layout } from "../../utils/style/layout" ;
2327import { capitalize , tinyAddress } from "../../utils/text" ;
2428import { BrandText } from "../BrandText" ;
@@ -83,7 +87,7 @@ export const DepositWithdrawModal: React.FC<DepositModalProps> = ({
8387 < View style = { styles . rowCenter } >
8488 < NetworkIcon networkId = { networkId } size = { 32 } />
8589 < SpacerRow size = { 3 } />
86- < BrandText >
90+ < BrandText style = { fontRegular16 } >
8791 { variation === "deposit" ? "Deposit on" : "Withdraw from" } { " " }
8892 { getNetwork ( networkId ) ?. displayName || "Unknown" }
8993 </ BrandText >
@@ -110,7 +114,7 @@ export const DepositWithdrawModal: React.FC<DepositModalProps> = ({
110114 width = { 460 }
111115 >
112116 < View style = { styles . container } >
113- < BrandText style = { [ fontSemibold14 , styles . selfCenter ] } >
117+ < BrandText style = { [ fontRegular14 , styles . selfCenter ] } >
114118 { capitalize ( variation ) } { nativeTargetCurrency ?. displayName }
115119 </ BrandText >
116120 < SpacerColumn size = { 1.5 } />
@@ -120,7 +124,7 @@ export const DepositWithdrawModal: React.FC<DepositModalProps> = ({
120124 < NetworkIcon size = { 64 } networkId = { sourceNetworkId || "unknown" } />
121125 </ View >
122126 < SpacerColumn size = { 1.5 } />
123- < BrandText style = { fontSemibold14 } >
127+ < BrandText style = { fontRegular14 } >
124128 From { sourceNetwork ?. displayName || "Unknown" }
125129 </ BrandText >
126130 < SpacerColumn size = { 1 } />
@@ -149,7 +153,7 @@ export const DepositWithdrawModal: React.FC<DepositModalProps> = ({
149153 />
150154 </ View >
151155 < SpacerColumn size = { 1.5 } />
152- < BrandText style = { fontSemibold14 } >
156+ < BrandText style = { fontRegular14 } >
153157 To { destinationNetwork ?. displayName || "Unknown" }
154158 </ BrandText >
155159 < SpacerColumn size = { 1 } />
@@ -175,9 +179,9 @@ export const DepositWithdrawModal: React.FC<DepositModalProps> = ({
175179 rules = { { required : true , max } }
176180 placeHolder = "0"
177181 subtitle = {
178- < BrandText style = { [ fontSemibold13 , { color : neutral77 } ] } >
182+ < BrandText style = { [ fontRegular13 , { color : neutral77 } ] } >
179183 Available:{ " " }
180- < BrandText style = { [ fontSemibold13 , { color : primaryColor } ] } >
184+ < BrandText style = { [ fontRegular13 , { color : primaryColor } ] } >
181185 { max }
182186 </ BrandText >
183187 </ BrandText >
@@ -329,12 +333,7 @@ const styles = StyleSheet.create({
329333 container : {
330334 paddingBottom : layout . spacing_x3 ,
331335 } ,
332- estimatedText : StyleSheet . flatten ( [
333- fontSemibold14 ,
334- {
335- color : neutral77 ,
336- } ,
337- ] ) ,
336+ estimatedText : StyleSheet . flatten ( [ fontRegular14 , { color : neutral77 } ] ) ,
338337} ) ;
339338
340339const convertCosmosAddress = (
0 commit comments