24 lines
587 B
TypeScript
24 lines
587 B
TypeScript
import { DoctorIcon } from '~/components/icons/doctor'
|
|
import { GraphIcon } from '~/components/icons/graph'
|
|
|
|
export const REPORT = [
|
|
{ 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 },
|
|
]
|
|
|
|
export const HISTORY = [
|
|
{
|
|
title: 'Total Kunjungan',
|
|
amount: 2890,
|
|
icon: GraphIcon,
|
|
counter: [2190, 700],
|
|
},
|
|
{
|
|
title: 'Total User Memesan',
|
|
amount: 274,
|
|
icon: DoctorIcon,
|
|
counter: [211, 54],
|
|
},
|
|
]
|