Company Logos
An npm package inspired by shadcn to create logos in all frontend frameworks
- 27
- weekly downloads
A CLI that copies company logo components straight into a React project — shadcn's model applied to brand SVGs, so the logos become your code instead of another dependency.
Copy, don't install
Icon packages make you ship the whole set to use three glyphs, and you cannot edit what you pulled in. Following shadcn's approach, company-logos writes the component file into your project. From then on it is ordinary source you can restyle, resize or delete.
npx company-logos add vercel next github --tsx
npx company-logos add --all --jsxTypeScript or JavaScript, your call
--tsx and --jsx decide what gets written, so the same command works in a typed Next.js app and a plain Vite one. --force overwrites, --all takes everything.
Keeping track of what was added
Added components are recorded in a logos.json manifest at the project root, so company-logos list can tell you what is already installed and available can show what is not. Components are fetched from GitHub at add time, which keeps the published package small.