package com.myfatoorahreactnative.cardview;

import androidx.annotation.Nullable;

import com.facebook.react.bridge.ReadableMap;
import com.facebook.react.uimanager.annotations.ReactProp;
import com.myfatoorah.sdk.views.embeddedpayment.MFPaymentCardView;

public interface IMFCardViewManager {
  @ReactProp(name = "paymentStyle")
  void setPaymentStyle(MFPaymentCardView view, @Nullable ReadableMap cardStyleMap);

  @ReactProp(name = "showNFCReadCardIcon")
  void setShowNFCReadCardIcon(MFPaymentCardView view, boolean value);
}
