import * as React from 'react'; import * as s from './PaymentMethodItem.scss'; import * as classNames from 'classnames'; interface IPaymentMethodItemProps { label: string; icon?: Node; paymentMethodId: string; isSelected: boolean; radioButtonClassName?: string; onPaymentMethodChanged: (pmId: string) => void; } export default (props: IPaymentMethodItemProps) => { const id = `wcn-payment-method-item-${props.paymentMethodId}`; return ( ); };