import { Icon } from "@iconify/react"; export default function DashboardStats() { const statsData = [ { type: "profile", name: "test akun", role: "admin-mabes", todayPosts: 0, weekPosts: 0, icon: "mdi:account-tie", }, { label: "Total post", value: 2363, icon: "mdi:post-outline", }, { label: "Total views", value: 80, icon: "ic:baseline-star-rate", }, { label: "Total share", value: 1, icon: "mdi:share", }, { label: "Total comment", value: 1, icon: "mdi:comment-outline", }, ]; return (
{statsData.map((item, index) => { if (item.type === "profile") { return (

{item.name}

{item.role}

{item.todayPosts} Post Hari ini

{item.weekPosts} Post Minggu ini

); } return (

{item.label}

{item.value}

); })}
); }