@availity/payer-logo

Easy to use component to display the payer's logo given the payer's ID

Usage no npm install needed!

<script type="module">
  import availityPayerLogo from 'https://cdn.skypack.dev/@availity/payer-logo';
</script>

README

@availity/payer-logo

THIS PACKAGE HAS BEEN DEPRECATED IN FAVOR OF @availity/spaces

Version NPM Downloads Dependecy Status

Easy to use component to display the payer's logo given the payer's ID

Installation

npx install-peerdeps @availity/payer-logo --save

Usage

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" />
  </>
);

PayerLogo (Default export)

Easy to use component to display the payer's logo given the payer's ID

Props
  • clientId: String. Required

At least one of the following props must be provided:

  • spaceId: String. Optional, required if payerId is not provided. The payer spaces ID for the payer for which you want a logo.
  • payerId: String. Optional, required if spaceId is not provided. The payer ID for the payer for which you want a logo.