import { useI18n } from '@wordpress/react-i18n';
import { useSSHKeyQuery } from 'calypso/me/security-ssh-key/use-ssh-key-query';
import { getOKIcon, getPendingIcon } from './icons';
import SecurityCheckupNavigationItem from './navigation-item';
export const SecurityCheckupSSHKey = () => {
const { data, isLoading } = useSSHKeyQuery();
const hasSSHKey = !! data && data.length > 0;
const { __ } = useI18n();
if ( isLoading ) {
return ;
}
return (
);
};