19 lines
344 B
TypeScript
19 lines
344 B
TypeScript
import * as React from "react";
|
|
|
|
export interface LatestItem {
|
|
id: string | number;
|
|
icon: React.ReactNode;
|
|
iconBgColor?: string;
|
|
title: string;
|
|
subtitle: string;
|
|
amount: string;
|
|
timeAgo: string;
|
|
}
|
|
|
|
export interface LatestItemsListProps {
|
|
title?: string;
|
|
items: LatestItem[];
|
|
onViewAll?: () => void;
|
|
accentColor: string;
|
|
}
|