From 170727953f07f13a5d8b9ddb4fb85427f9d518bd Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Mon, 19 Feb 2024 22:54:32 +0200 Subject: [PATCH] feat(migrate-panel): add real texts --- .../Panels/MigratePanel.tsx | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/pages/ValidatorManagement/ManageValidator/RightManageSettings/Panels/MigratePanel.tsx b/src/pages/ValidatorManagement/ManageValidator/RightManageSettings/Panels/MigratePanel.tsx index 7ad60b73..b4e88a1e 100644 --- a/src/pages/ValidatorManagement/ManageValidator/RightManageSettings/Panels/MigratePanel.tsx +++ b/src/pages/ValidatorManagement/ManageValidator/RightManageSettings/Panels/MigratePanel.tsx @@ -1,7 +1,24 @@ +import { InformationBox, Text } from '@status-im/components' +import { CloseCircleIcon } from '@status-im/icons' import { YStack } from 'tamagui' const MigratePanel = () => { - return + return ( + + + Migrate Validator + + + You are about to Migrate your validator it is not possible for you to + revert this action! Please make sure you understand the consequences. + + } + /> + + ) } export default MigratePanel