27 lines
574 B
TypeScript
27 lines
574 B
TypeScript
import { DoctorIcon } from '~/components/icons/doctor'
|
||
import { GraphIcon } from '~/components/icons/graph'
|
||
|
||
export const REPORT = [
|
||
{ title: 'Total User', amount: 10_800, icon: GraphIcon },
|
||
{ title: 'Total User Subscribe', amount: 5000, icon: GraphIcon },
|
||
{
|
||
title: 'Total Nilai Subscribe',
|
||
amount: 250_000_000,
|
||
icon: GraphIcon,
|
||
currency: 'Rp. ',
|
||
},
|
||
]
|
||
|
||
export const HISTORY = [
|
||
{
|
||
title: 'Total Content Biasa',
|
||
amount: 2890,
|
||
icon: GraphIcon,
|
||
},
|
||
{
|
||
title: 'Total Content Premium',
|
||
amount: 274,
|
||
icon: DoctorIcon,
|
||
},
|
||
]
|