Skip to content

v0.0.11

Compare
Choose a tag to compare
@github-actions github-actions released this 11 Dec 11:16
· 1161 commits to main since this release
2f1fd2c

Patch Changes

  • a47a5a0: - React support removed.

    • ChainLogo, SymbolLogo and ApiProviderLogo now return a string instead of a React component.
    • Returned string is a base64 encoded SVG image.
    import { ChainLogo, SymbolLogo, ApiProviderLogo } from 'beta-logos';
    
    <div>
        <img src={ChainLogo('43114')} width={50} height={50} alt="43114" />
        <img src={SymbolLogo('BTC')} width={50} height={50} alt="BTC" />
        <img src={ApiProviderLogo('nodary')} width={50} height={50} alt="nodary" />
    </div>;