brightyui
Version:
Brighty UI library
16 lines (15 loc) • 388 B
TypeScript
import { FC, ReactNode } from 'react';
import { EColors } from '../../types/EColors';
interface IProps {
title: string;
subtitle: string;
value: string;
subvalue: string;
loading?: boolean;
icon: ReactNode;
valueColor?: EColors;
onClick?: () => void;
crossedValue?: boolean;
}
declare const TransactionCell: FC<IProps>;
export default TransactionCell;