import { GraphIcon } from '~/components/icons/graph' interface CardReportProperty { title: string amound?: number | string url?: string type?: 'history' | 'report' counter?: number[] } export const CardReport = (properties: CardReportProperty) => { const { title, amound } = properties return ( <>

{title}

Rp. {amound}

) }