From db556a13b6ce1d3584a111ff9861737f014d108c Mon Sep 17 00:00:00 2001 From: mengstabketemaw Date: Fri, 5 Jun 2026 16:36:08 +0300 Subject: [PATCH] fix element type --- .../src/app/features/dashboard/pages/DashboardPage.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/backoffice/src/app/features/dashboard/pages/DashboardPage.tsx b/apps/backoffice/src/app/features/dashboard/pages/DashboardPage.tsx index 5bf5604c4..cd3b72ccc 100644 --- a/apps/backoffice/src/app/features/dashboard/pages/DashboardPage.tsx +++ b/apps/backoffice/src/app/features/dashboard/pages/DashboardPage.tsx @@ -1,10 +1,11 @@ +import type { ElementType } from 'react'; import { Grid, Paper, Text, Title, Stack, Group } from '@mantine/core'; import { IconBox, IconUsers, IconActivity } from '@tabler/icons-react'; interface StatCardProps { label: string; value: string; - icon: React.ElementType; + icon: ElementType; color: string; }