diff --git a/src/views/notifications/BlockRewardNotification/index.tsx b/src/views/notifications/BlockRewardNotification/index.tsx
index 3e4631f..200522b 100644
--- a/src/views/notifications/BlockRewardNotification/index.tsx
+++ b/src/views/notifications/BlockRewardNotification/index.tsx
@@ -8,7 +8,6 @@ import { Notification, NotificationProps } from '@/components/Notification';
import { Output, OutputType } from '@/components/Output';
import { Icon, IconName } from '@/components/Icon';
-
type ElementProps = {
data: {
BLOCK_REWARD_AMOUNT: string;
@@ -40,7 +39,13 @@ export const BlockRewardNotification = ({
{
key: 'block_reward',
label: stringGetter({ key: STRING_KEYS.BLOCK_REWARD }),
- value: ,
+ value: (
+
+ ),
},
]}
/>
@@ -63,3 +68,11 @@ Styled.Notification = styled(Notification)`
background-image: url('/dots-background-2.svg');
background-size: cover;
`;
+
+Styled.Output = styled(Output)`
+ &:before {
+ content: '+';
+ color: var(--color-positive);
+ margin-right: 0.5ch;
+ }
+`;