MSQ Logo

Cryptocurrency Logos

A collection of cryptocurrency logos with multiple sizes, shapes, and themes. Perfect for displaying crypto assets in your application.

Installation

import { CryptoLogo } from "@/components/ui/crypto-logo"

Usage

BTC Logo
MATIC Logo

Cryptocurrencies

All available cryptocurrency logos in the design system.

BTC Logo

Bitcoin

The original cryptocurrency

BTC

MATIC Logo

Polygon

Ethereum scaling solution

MATIC

SHIB Logo

Shiba Inu

Meme cryptocurrency

SHIB

USDT Logo

Tether

USD-pegged stablecoin

USDT

KRW Logo

Korean Won

Korean currency

KRW

USDC Logo

USD Coin

USD-pegged stablecoin

USDC

MSQ Logo

MSquare Market

MSQ platform token

MSQ

Download SVGs

Download the cryptocurrency logo SVGs from public/logos. Each logo has four variants: Colored Circle, Colored Square, Light Circle, Light Square.

Variants

Explore all available sizes, shapes, and themes for cryptocurrency logos.

BTC Logo

X-Large

56px

BTC Logo

Large

48px

BTC Logo

Medium

40px

BTC Logo

Small

32px

All Variants

Complete showcase of all cryptocurrency logos. Click on a cryptocurrency to view all variants.

API Reference

interface CryptoLogoProps {
  /**
   * Cryptocurrency type
   */
  crypto: "BTC" | "MATIC" | "SHIB" | "USDT" | "KRW" | "USDC" | "MSQ"
  
  /**
   * Size of the logo
   * @default "md"
   */
  size?: "xl" | "lg" | "md" | "sm" | number
  
  /**
   * Shape of the container
   * @default "Circle"
   */
  shape?: "Circle" | "Square"
  
  /**
   * Theme variant
   * @default "Colored"
   */
  theme?: "Colored" | "Light"
  
  /**
   * Additional className
   */
  className?: string
}