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

10 lines
181 B
TypeScript

export interface ProviderCardProps {
imageUrl: string;
name: string;
rating: number;
deliveryTime: string;
tag: string;
discountText?: string;
onPress?: () => void;
}