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

7 lines
120 B
TypeScript

export interface PaymentOptionProps {
type: string;
label: string;
isSelected: boolean;
onSelect: () => void;
}