thirdweb-dev / chain-icons

Apache License 2.0
19 stars 9 forks source link

chain-icons

A quick, easy and light-weight way to add chain / network icons to your react app.

Installation

yarn add @thirdweb-dev/chain-icons

Usage

Example of using the Polygon Icon

import React from "react";
import { Polygon } from "@thirdweb-dev/chain-icons";

const App = () => {
  return (
    <div>
      <h1>Polygon Icon</h1>
      <Polygon />
    </div>
  );
};

Thanks & Inspirations