2025-02-24 09:31:48 +08:00
|
|
|
import { DoctorIcon } from '~/components/icons/doctor'
|
|
|
|
|
import { GraphIcon } from '~/components/icons/graph'
|
|
|
|
|
|
2025-02-23 21:13:31 +07:00
|
|
|
export const REPORT = [
|
2025-02-24 09:31:48 +08:00
|
|
|
{ title: 'Total Transaksi', amount: 10_800_000_000, icon: GraphIcon },
|
|
|
|
|
{ title: 'Transaksi Tertagih', amount: 2_000_000, icon: GraphIcon },
|
|
|
|
|
{ title: 'Transaksi Tertagih', amount: 2_000_000, icon: GraphIcon },
|
2025-02-23 21:13:31 +07:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
export const HISTORY = [
|
|
|
|
|
{
|
|
|
|
|
title: 'Total Kunjungan',
|
2025-02-24 09:31:48 +08:00
|
|
|
amount: 2890,
|
|
|
|
|
icon: GraphIcon,
|
2025-02-23 23:17:06 +07:00
|
|
|
counter: [2190, 700],
|
2025-02-23 21:13:31 +07:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Total User Memesan',
|
2025-02-24 09:31:48 +08:00
|
|
|
amount: 274,
|
|
|
|
|
icon: DoctorIcon,
|
2025-02-23 23:17:06 +07:00
|
|
|
counter: [211, 54],
|
2025-02-23 21:13:31 +07:00
|
|
|
},
|
|
|
|
|
]
|