File size: 535 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { Spinner } from '@automattic/components';
import { useTranslate } from 'i18n-calypso';

export default function WaitForKey() {
	const translate = useTranslate();

	return (
		<div className="security-2fa-key__add-wait-for-key">
			<Spinner />
			<p className="security-2fa-key__add-wait-for-key-heading">
				{ translate( 'Waiting for security key' ) }
			</p>
			<p>
				{ translate(
					'Connect and touch your security key to register it, or follow the directions in your browser or pop-up.'
				) }
			</p>
		</div>
	);
}