7 lines
121 B
TypeScript

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