1- import { useTheme } from "@emotion/react" ;
2- import NotificationsOffOutlined from "@mui/icons-material/NotificationsOffOutlined" ;
3- import ReplayIcon from "@mui/icons-material/Replay" ;
41import CircularProgress from "@mui/material/CircularProgress" ;
52import IconButton from "@mui/material/IconButton" ;
63import Tooltip from "@mui/material/Tooltip" ;
@@ -9,6 +6,7 @@ import type { HealthSeverity } from "api/typesGenerated";
96import { ErrorAlert } from "components/Alert/ErrorAlert" ;
107import { Loader } from "components/Loader/Loader" ;
118import kebabCase from "lodash/fp/kebabCase" ;
9+ import { BellOffIcon , RotateCcwIcon } from "lucide-react" ;
1210import { DashboardFullPage } from "modules/dashboard/DashboardLayout" ;
1311import { type FC , Suspense } from "react" ;
1412import { useMutation , useQuery , useQueryClient } from "react-query" ;
@@ -28,7 +26,6 @@ const linkStyles = {
2826} ;
2927
3028export const HealthLayout : FC = ( ) => {
31- const theme = useTheme ( ) ;
3229 const queryClient = useQueryClient ( ) ;
3330 const {
3431 data : healthStatus ,
@@ -91,7 +88,7 @@ export const HealthLayout: FC = () => {
9188 { isRefreshing ? (
9289 < CircularProgress size = { 16 } />
9390 ) : (
94- < ReplayIcon className = "size-5" />
91+ < RotateCcwIcon className = "size-5" />
9592 ) }
9693 </ IconButton >
9794 </ Tooltip >
@@ -155,13 +152,7 @@ export const HealthLayout: FC = () => {
155152 />
156153 { label }
157154 { healthSection . dismissed && (
158- < NotificationsOffOutlined
159- css = { {
160- fontSize : 14 ,
161- marginLeft : "auto" ,
162- color : theme . palette . text . disabled ,
163- } }
164- />
155+ < BellOffIcon className = "size-icon-sm ml-auto text-content-disabled" />
165156 ) }
166157 </ NavLink >
167158 ) ;
0 commit comments