diff --git a/src/pages/Dashboard/RightSideBar/ValidatorListItem.tsx b/src/pages/Dashboard/RightSideBar/ValidatorListItem.tsx new file mode 100644 index 00000000..2534307d --- /dev/null +++ b/src/pages/Dashboard/RightSideBar/ValidatorListItem.tsx @@ -0,0 +1,44 @@ +import { XStack, YStack } from 'tamagui' +import { Avatar, Checkbox, Text } from '@status-im/components' +import { VerifiedIcon, ContactIcon } from '@status-im/icons' + +const ValidatorListItem = () => { + return ( + + + + + + Validator 1 + + + Validator 1 + + + + + ) +} + +export default ValidatorListItem