26 lines
551 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 User', amount: 10_800, icon: ChartBarIcon },
{ title: 'Total User Subscribe', amount: 5000, icon: ChartBarIcon },
{
title: 'Total Nilai Subscribe',
amount: 250_000_000,
icon: ChartBarIcon,
currency: 'Rp. ',
},
]
export const HISTORY = [
{
title: 'Total Content Biasa',
amount: 2890,
icon: ChartPieIcon,
},
{
title: 'Total Content Premium',
amount: 274,
icon: ChartPieIcon,
},
]