File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
app/components/UI/BalanceEmptyState Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ import { useNavigation } from '@react-navigation/native';
44import { useSelector } from 'react-redux' ;
55import {
66 Box ,
7+ Button ,
8+ ButtonSize ,
79 Text ,
810 TextVariant ,
911 TextColor ,
@@ -14,7 +16,6 @@ import {
1416 FontWeight ,
1517} from '@metamask/design-system-react-native' ;
1618import { useTailwind } from '@metamask/design-system-twrnc-preset' ;
17- import ButtonHero from '../../../component-library/components-temp/Buttons/ButtonHero' ;
1819import { strings } from '../../../../locales/i18n' ;
1920import { MetaMetricsEvents , useMetrics } from '../../hooks/useMetrics' ;
2021import { getDecimalChainId } from '../../../util/networks' ;
@@ -104,13 +105,14 @@ const BalanceEmptyState: React.FC<BalanceEmptyStateProps> = ({
104105 { strings ( 'wallet.get_ready_for_web3' ) }
105106 </ Text >
106107 </ Box >
107- < ButtonHero
108+ < Button
109+ size = { ButtonSize . Lg }
108110 onPress = { handleAction }
109111 isFullWidth
110112 testID = { `${ testID } -action-button` }
111113 >
112114 { strings ( 'wallet.add_funds' ) }
113- </ ButtonHero >
115+ </ Button >
114116 </ Box >
115117 ) ;
116118} ;
You can’t perform that action at this time.
0 commit comments