@@ -4,10 +4,8 @@ import { useTranslation } from 'react-i18next'
44import { Button } from '@oasisprotocol/ui-library/src/components/ui/button'
55import { Link } from '@oasisprotocol/ui-library/src/components/link'
66import { Typography } from '@oasisprotocol/ui-library/src/components/typography'
7- import FilterNoneIcon from '@mui/icons-material/FilterNone'
8- import RadioButtonUncheckedIcon from '@mui/icons-material/RadioButtonUnchecked'
7+ import { CircleOff } from 'lucide-react'
98import { Runtime , useGetRuntimeStatus } from 'oasis-nexus/api'
10- import { COLORS } from '../../../styles/theme/colors'
119import { useRuntimeFreshness } from '../../components/OfflineBanner/hook'
1210import { BlockLink } from '../../components/Blocks/BlockLink'
1311import { RouterLinkCircle } from '../../components/StyledLinks'
@@ -243,7 +241,7 @@ const PanelButton: FC<PanelButtonProps> = ({ activePanel, ariaLabel, panel, setP
243241 { panel === activePanel ? (
244242 < div className = "rounded-full w-[10px] h-[10px] bg-chart-5" />
245243 ) : (
246- < RadioButtonUncheckedIcon sx = { { color : COLORS . brandDark , fontSize : ' 10px' } } />
244+ < div className = "rounded-full w-[10px] h-[ 10px] border border-chart-5" />
247245 ) }
248246 </ Button >
249247 )
@@ -266,10 +264,10 @@ const ChartsContainer: FC<ChartsContainerProps> = ({ children, status }) => {
266264 < div className = "flex flex-1 flex-col items-center gap-2" >
267265 { status && < div className = "w-full" > { children } </ div > }
268266 { ! status && (
269- < >
270- < FilterNoneIcon sx = { { color : COLORS . brandDark , fontSize : '33px' } } />
267+ < span className = "flex flex-col gap-2 items-center text-center text-muted-foreground" >
268+ < CircleOff size = { 30 } className = "text-muted-foreground" />
271269 { t ( 'paratimes.noData' ) }
272- </ >
270+ </ span >
273271 ) }
274272 </ div >
275273 </ div >
0 commit comments