"use client"; import { appConfig } from "@/shared/config/app-config"; import { TrendingUp, Download } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; type Props = { url: string; icon: string; title: string; value: number | string; loading?: boolean; }; export function StatisticCardItem({ url, icon, title, value, loading }: Props) { const isDisabled = title === "Total Pengunjung"; if (loading) { return (
{title}
Lihat Semua
)}