2023-12-16 09:11:35 -06:00
|
|
|
export default function dashboardItem({
|
|
|
|
name,
|
|
|
|
value,
|
|
|
|
icon,
|
|
|
|
}: {
|
2023-11-09 10:44:49 -06:00
|
|
|
name: string;
|
|
|
|
value: number;
|
2023-12-16 09:11:35 -06:00
|
|
|
icon: string;
|
|
|
|
}) {
|
2023-11-09 10:44:49 -06:00
|
|
|
return (
|
2023-12-16 09:11:35 -06:00
|
|
|
<div className="flex items-center">
|
2024-05-24 16:12:47 -05:00
|
|
|
<div className="w-[4rem] aspect-square flex justify-center items-center bg-primary/20 rounded-xl select-none">
|
|
|
|
<i className={`${icon} text-primary text-3xl drop-shadow`}></i>
|
2023-11-09 10:44:49 -06:00
|
|
|
</div>
|
2023-12-16 09:11:35 -06:00
|
|
|
<div className="ml-4 flex flex-col justify-center">
|
|
|
|
<p className="text-neutral text-xs tracking-wider">{name}</p>
|
2024-09-11 00:38:38 -05:00
|
|
|
<p className="font-thin text-5xl text-primary mt-0.5">{value || 0}</p>
|
2023-11-09 10:44:49 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|