
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@api3/logos
Advanced tools
pnpm add @api3/logos
npm i @api3/logos
yarn add @api3/logos
import { ChainLogo, SymbolLogo, ApiProviderLogo } from '@api3/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>;
<template>
<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>
</template>
<script>
import { ChainLogo, SymbolLogo, ApiProviderLogo } from '@api3/logos';
export default {
...
methods: {
getSymbolLogo(symbol) {
return SymbolLogo(symbol);
},
getChainLogo(chainId) {
return ChainLogo(chainId);
},
getApiProviderLogo(apiProvider) {
return ApiProviderLogo(apiProvider);
},
}
...
}
</script>
light
prop is optional and defaults to false
(dark theme). light = true
will return the light theme logo.
Prop | Type | Description |
---|---|---|
id | string | Chain id |
light | boolean | Light theme |
Prop | Type | Description |
---|---|---|
id | string | Symbol id |
light | boolean | Light theme |
Prop | Type | Description |
---|---|---|
id | string | ApiProvider |
light | boolean | Light theme |
Live demo at https://api3dao.github.io/logos
FAQs
## Installation
The npm package @api3/logos receives a total of 793 weekly downloads. As such, @api3/logos popularity was classified as not popular.
We found that @api3/logos demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.