algologo
v0.3.0
Published
A free, community-maintained library of logos for Algorand projects (dapps, wallets, explorers, NFT projects).
Maintainers
Readme
algologo
A free, community-maintained library of logos for Algorand projects — dapps, wallets, explorers, and NFT projects. Stop hunting for scattered SVGs: install once and use them with correct sizing and theming.
npm install algologoThree ways to use it
1. Framework-agnostic (any project)
import { tinyman, getLogo, logoSlugs } from "algologo";
element.innerHTML = tinyman.svg; // raw, optimized SVG string
const pera = getLogo("pera-wallet"); // lookup by slug
console.log(pera?.meta.website);2. React
import { TinymanLogo } from "algologo/react";
<TinymanLogo width="2em" height="2em" aria-label="Tinyman" />Components are tree-shakable and accept all standard SVG props. react is an
optional peer dependency.
3. Plain <img> / any framework via CDN (no install)
<img src="https://cdn.jsdelivr.net/npm/algologo/logos/tinyman/logo.svg" alt="Tinyman" />Machine-readable index
import registry from "algologo/registry.json";Adding a logo
algologo grows through community contributions. See
CONTRIBUTING.md — it's just a logo.svg + meta.json PR.
Legal
Code is MIT licensed. Logos belong to their owners — see TRADEMARKS.md, including how to request removal.
