> ## Documentation Index
> Fetch the complete documentation index at: https://docs.malga.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Provedores suportados

export const CheckIcon = ({mode, type, id}) => {
  const colorIcons = {
    'error': '#919191',
    'success': '#00AE42',
    'noSupported': '#919191'
  };
  const foundColor = colorIcons[mode];
  const iconType = mode === 'noSupported' ? type : `circle-${type}`;
  return <div className="check-icon" id={id}>
      <Icon icon={iconType} iconType="regular" color={foundColor} size={18} />
    </div>;
};

Os provedores de pagamento suportados pelo serviço são:

| Provedor |  Precisa enviar o `paymentFacilitatorId`? |
| -------- | :---------------------------------------: |
| Adyen    | <CheckIcon type="check" mode="success" /> |
| Cielo    | <CheckIcon type="check" mode="success" /> |
| Getnet   |  <CheckIcon type="xmark" mode="error" />  |
| Rede     | <CheckIcon type="check" mode="success" /> |
| SafraPay |  <CheckIcon type="xmark" mode="error" />  |
| Sandbox  |  <CheckIcon type="xmark" mode="error" />  |

<Warning>
  Para maiores informações sobre o `paymentFacilitatorId` consulte sua bandeira.{" "}
  <br />\*
  [Visa](https://www.visa.com.br/parceiros-visa/informacoes-para-parceiros/facilitadores-de-pagamento.html#O_que_%C3%A9_arranjo_de_pagamento_da_Visa_-1356886403)
  \*
  [MasterCard](https://www.mastercard.com.br/pt-br/visao/quem-somos/participantes-arranjo-mastercard.html)
</Warning>
