2026-07-01 09:55:55 +05:30

10 lines
200 B
TypeScript

export interface OrderHistoryCardProps {
providerName: string;
providerImage: string;
orderDate: string;
status: string;
total: number;
onReorder?: () => void;
onDetails?: () => void;
}