add info icon

This commit is contained in:
Yana
2025-02-19 20:31:04 +02:00
parent 231d94b6d4
commit 9b64fc7755
2 changed files with 4 additions and 4 deletions
@@ -31,7 +31,6 @@ export const SocialChannels = () => {
}}
>
<SocialIcon channel={channel?.name} />
{/* {channel.name} */}
</Link>
);
},
@@ -1,4 +1,6 @@
"use client";
import { fetchNoise } from "@/app/api";
import InfoOutlinedIcon from "@mui/icons-material/InfoOutlined";
import { Box, Skeleton, Stack, Tooltip, Typography } from "@mui/material";
import { useQuery } from "@tanstack/react-query";
import type { IPacketsAndStakingData } from "../../app/api/types";
@@ -7,8 +9,6 @@ import ExplorerCard from "../cards/ExplorerCard";
import { LineChart } from "../lineChart";
import { UpDownPriceIndicator } from "../price/UpDownPriceIndicator";
import { fetchNoise } from "@/app/api";
export const NoiseCard = () => {
const { data, isLoading, isError } = useQuery({
queryKey: ["noise"],
@@ -113,8 +113,9 @@ export const NoiseCard = () => {
title={"Self reported noise volume"}
onClick={(e) => e.stopPropagation()}
>
<Typography variant="h4" sx={{ color: "#8482FD" }}>
<Typography variant="h4" sx={{ color: "#8482FD", cursor: "pointer" }}>
({formatedNoiseVolume})
<InfoOutlinedIcon sx={{ fontSize: 16 }} />
</Typography>
</Tooltip>
</Box>