diff --git a/examples/stake-tokens/components/react/all-validators.tsx b/examples/stake-tokens/components/react/all-validators.tsx
index 9c0ca7dd3..0f0a7d2c1 100644
--- a/examples/stake-tokens/components/react/all-validators.tsx
+++ b/examples/stake-tokens/components/react/all-validators.tsx
@@ -24,6 +24,7 @@ import {
Text,
Image,
useColorMode,
+ Center,
} from '@chakra-ui/react';
import {
DelegateWarning,
@@ -46,6 +47,34 @@ import type {
import { TransactionResult } from '../types';
import { ChainName } from '@cosmos-kit/core';
+export const Thumbnail = ({
+ identity,
+ name,
+ thumbnailUrl,
+}: {
+ identity: string | undefined;
+ name: string | undefined;
+ thumbnailUrl: string;
+}) => {
+ return (
+ <>
+ {identity && thumbnailUrl ? (
+