import React from 'react' import { CopyButton } from '@/components/form' import { QRCodeSVG } from 'qrcode.react' import styles from '@/styles/wallet.module.css' export function Passphrase ({ passphrase }) { const words = passphrase.trim().split(/\s+/) return ( <>

Make sure to copy your passphrase now.

This is the only time we will show it to you.

{words.map((word, index) => (
{index + 1}. {word}
))}
) }