pagamio-frontend-commons-lib
Version:
Pagamio library for Frontend reusable components like the form engine and table container
17 lines (16 loc) • 402 B
TypeScript
import type { QueryProps } from 'src/shared/types';
import React from 'react';
interface TileProps {
title?: string;
format?: string;
url?: string;
valueKey: string;
previousValueKey: string;
changeKey: string;
details?: any[];
query: QueryProps;
currency?: string;
currencyDisplaySymbol?: string;
}
declare const Tile: React.FC<TileProps>;
export default Tile;