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