7 lines
120 B
TypeScript
7 lines
120 B
TypeScript
export interface PaymentOptionProps {
|
|
type: string;
|
|
label: string;
|
|
isSelected: boolean;
|
|
onSelect: () => void;
|
|
}
|