UNPKG

pagamio-frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

16 lines (15 loc) 545 B
import type { ApiErrorResponse } from '../../api'; interface MetricSummaryCardProps { title: string; format: string; value: number; previousValue: number; change: number; loading: boolean; isEmpty: boolean; currency?: string; error?: ApiErrorResponse; refresh: () => void; } declare const MetricSummaryCard: ({ title, format, value, previousValue, change, loading, isEmpty, currency, error, refresh, }: MetricSummaryCardProps) => import("react/jsx-runtime").JSX.Element; export default MetricSummaryCard;