10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
export interface ProviderCardProps {
|
|
imageUrl: string;
|
|
name: string;
|
|
rating: number;
|
|
deliveryTime: string;
|
|
tag: string;
|
|
discountText?: string;
|
|
onPress?: () => void;
|
|
}
|