From de3792fb6bb8bd31d8b5985f22e49ae0bc516ffe Mon Sep 17 00:00:00 2001 From: "Thomas \"ajnart\" Camlong" Date: Wed, 1 Jun 2022 11:08:27 +0200 Subject: [PATCH] :bug: Fixing a bug related to imports --- src/components/modules/system/SystemModule.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/modules/system/SystemModule.tsx b/src/components/modules/system/SystemModule.tsx index 060d89482..414098fad 100644 --- a/src/components/modules/system/SystemModule.tsx +++ b/src/components/modules/system/SystemModule.tsx @@ -8,7 +8,7 @@ import { Title, useMantineTheme, } from '@mantine/core'; -import { Cpu } from 'tabler-icons-react'; +import { IconCpu } from '@tabler/icons'; import { useEffect, useState } from 'react'; import axios from 'axios'; import si from 'systeminformation'; @@ -19,7 +19,7 @@ import { useListState } from '@mantine/hooks'; export const SystemModule: IModule = { title: 'System info', description: 'Show the current CPU usage and memory usage', - icon: Cpu, + icon: IconCpu, component: SystemInfo, };