fix element type

This commit is contained in:
mengstabketemaw
2026-06-05 16:36:08 +03:00
parent f0c64f3c4c
commit db556a13b6

View File

@@ -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;
}