fix: recovery phrase icon stories

This commit is contained in:
RadoslavDimchev 2023-10-31 16:20:55 +02:00
parent 69e7fbdf59
commit dcc7b9ceea
1 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,7 @@ export const KeystoreFiles: Story = {
args: {
value: KEYSTORE_FILES,
recoveryMechanism: KEYSTORE_FILES,
icon: 'keystore-files-icon.svg',
},
}
@ -26,6 +27,7 @@ export const RecoveryPhrase: Story = {
args: {
value: RECOVERY_PHRASE,
recoveryMechanism: RECOVERY_PHRASE,
icon: 'recovery-phrase-icon.svg',
},
}
@ -33,6 +35,7 @@ export const BothKeyAndRecovery: Story = {
args: {
value: BOTH_KEY_AND_RECOVERY,
recoveryMechanism: BOTH_KEY_AND_RECOVERY,
icon: 'both-recovery-keystore-icon.svg',
},
}
@ -40,6 +43,7 @@ export const NotSelected: Story = {
args: {
value: KEYSTORE_FILES,
recoveryMechanism: '',
icon: 'keystore-files-icon.svg',
},
}
@ -47,5 +51,6 @@ export const WithoutValue: Story = {
args: {
value: '',
recoveryMechanism: KEYSTORE_FILES,
icon: '',
},
}