26 lines
529 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { ChartBarIcon, ChartPieIcon } from '@heroicons/react/24/solid'
export const REPORT = [
{ title: 'Total Pengguna', amount: 8, icon: ChartBarIcon },
{ title: 'Total Pelanggan', amount: 0, icon: ChartBarIcon },
{
title: 'Total Nilai Berlangganan',
amount: 0,
icon: ChartBarIcon,
currency: 'Rp. ',
},
]
export const HISTORY = [
{
title: 'Total Artikel Biasa',
amount: 7,
icon: ChartPieIcon,
},
{
title: 'Total Artikel Premium',
amount: 3,
icon: ChartPieIcon,
},
]