THIS PACKAGE HAS BEEN DEPRECATED IN FAVOR OF
@availity/spaces
Easy to use component to display the payer's logo given the payer's ID
npx install-peerdeps @availity/payer-logo --save
import React from 'react';
import PayerLogo from '@availity/payer-logo';
const Example = () => (
<>
<PayerLogo spaceId="73162546201441126239486200007187" clientId="my-client-id" alt="The word 'Payer' in green" />
<PayerLogo payerId="PayerID" clientId="my-client-id" alt="The word 'Payer' in green" />
</>
);
Easy to use component to display the payer's logo given the payer's ID
-
clientId
: String. Required
At least one of the following props must be provided:
-
spaceId
: String. Optional, required ifpayerId
is not provided. The payer spaces ID for the payer for which you want a logo. -
payerId
: String. Optional, required ifspaceId
is not provided. The payer ID for the payer for which you want a logo.