import { messages } from '../../shared/gettext';
import { Button, IconButton } from '../lib/components';
import { useBoolean } from '../lib/utility-hooks';
import { ModalAlert, ModalAlertType, ModalMessage } from './Modal';
export default function DeviceInfoButton() {
const [deviceHelpVisible, showDeviceHelp, hideDeviceHelp] = useBoolean();
return (
<>
{messages.gettext('Got it!')}
,
]}
close={hideDeviceHelp}>
{messages.pgettext(
'device-management',
'This is the name assigned to the device. Each device logged in on a Mullvad account gets a unique name that helps you identify it when you manage your devices in the app or on the website.',
)}
{messages.pgettext(
'device-management',
'You can have up to 5 devices logged in on one Mullvad account.',
)}
{messages.pgettext(
'device-management',
'If you log out, the device and the device name is removed. When you log back in again, the device will get a new name.',
)}
>
);
}