+ {accountsBySeedPhrase.map((account) => (
+
+
+
+
{account.accountId}
+
+
account.imported) && !account.imported ? 'gray-blue' : 'blue'}
+ disabled={!!importingAccount}
+ sending={importingAccount === account.accountId}
+ sendingString='importing'
+ onClick={() => {
+ onClickAccount({
+ accountId: account.accountId,
+ action: account.imported ? 'select' : 'import'
+ });
+ }}
+ >
+ {account.imported
+ ?
+ :
+ }
+
+
+ ))}
+