diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanismCard.tsx b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanismCard.tsx new file mode 100644 index 00000000..5e6018d8 --- /dev/null +++ b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryMechanismCard.tsx @@ -0,0 +1,32 @@ +import { Text } from '@status-im/components' + +type RecoveryMechanismProps = { + value: string + selectedRecoveryMechanism: string + handleRecoveryMechanismChange: (value: string) => void +} + +const RecoveryMechanismCard = ({ + value, + selectedRecoveryMechanism, + handleRecoveryMechanismChange, +}: RecoveryMechanismProps) => { + return ( +