npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@kreozalabs/logos

v0.1.0

Published

Kreoza React logo components and multi-format brand asset library

Readme

@kreozalabs/logos

Official React logo components and brand assets for Kreoza.

npm version


📦 Installation

Install @kreozalabs/logos using your preferred package manager:

# pnpm
pnpm add @kreozalabs/logos

# npm
npm install @kreozalabs/logos

# yarn
yarn add @kreozalabs/logos

Note: @kreozalabs/logos requires React 18 or React 19 as a peer dependency.


🚀 Usage

Import logo components directly into your React application:

import {
  Logo,
  LogoLight,
  LogoWordmark,
  LogoWordmarkLight,
  GitHub,
} from "@kreozalabs/logos";

export function Header() {
  return (
    <header className="flex items-center justify-between p-4 bg-zinc-900 text-white">
      {/* Wordmark logo for dark backgrounds */}
      <LogoWordmarkLight className="h-8 w-auto" />

      {/* GitHub icon link */}
      <a href="https://github.com/kreozalabs" target="_blank" rel="noreferrer">
        <GitHub className="w-6 h-6 hover:opacity-80 transition-opacity" />
      </a>
    </header>
  );
}

Component Props & Customization

All logo components extend standard React SVG attributes (React.SVGProps<SVGSVGElement>), giving you full control over styling:

  • Sizing: Use className, width, or height. By default, components scale to 1em.
  • Colors: Foreground colors utilize currentColor where appropriate, responding to text color changes (text-zinc-900, text-white, etc.).

🎨 Available Components

| Component | Description | Default Theme | | :---------------------- | :---------------------------------------- | :----------------------------- | | <Logo /> | Kreoza emblem mark | Default / Dark theme | | <LogoLight /> | Kreoza emblem mark (Light variant) | Light theme / Dark backgrounds | | <LogoWordmark /> | Full Kreoza wordmark logo | Default / Dark theme | | <LogoWordmarkLight /> | Full Kreoza wordmark logo (Light variant) | Light theme / Dark backgrounds | | <GitHub /> | Official GitHub brand mark | Neutral (currentColor) |


📁 Raw Assets & Release Archive

If you need standalone graphic assets for design tools (Figma, Illustrator), mobile/desktop apps, or non-React web applications:

  1. Raw SVG vector sources are available in the repository under assets/.
  2. A complete multi-format asset bundle (logos.zip) containing pre-rendered graphics across all supported formats, dimensions, and resolutions (including SVGs, raster images, app icons, and web/PWA assets) is attached to every GitHub Release.

🛠️ Local Development

Clone the repo and install dependencies:

git clone https://github.com/kreozalabs/logos.git
cd logos
pnpm install

Available Scripts

  • pnpm build: Runs tsup to bundle TSX components into CJS and ESM distributions under dist/.
  • pnpm generate: Converts raw SVG files in assets/ to TSX React components in src/components/.
  • pnpm dev: Generates components and starts tsup in watch mode.
  • pnpm build:zip: Generates all multi-platform asset variants and packages them into a downloadable logos.zip archive.
  • pnpm typecheck: Runs TypeScript type verification without emitting files.

📄 License

See LICENSE © Kreoza. All rights reserved. Logos and trademarks belong exclusively to Kreoza.