add info icon
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user