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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@snapp-store/iranian-banks-react-icons

v1.1.1

Published

iranian banks React SVG icons library made by SnappStore!

Readme

🇮🇷 @snapp-store/iranian-banks-react-icons

A comprehensive collection of React icons for Iranian banks, PSPs, and financial institutions.
Includes both colored and monotone SVG variants for each logo — ready to use in React or React Native (with SVG support).


🏦 Supported Brands

This package includes icons for almost all Iranian banks and payment providers, such as:

  • Bank Melli, Mellat, Saderat, Tejarat, Sepah, Pasargad, Saman, Refah, Keshavarzi, Maskan, etc.
  • Newer banks: BluBank, Bankino, Futurebank, Iran Zamin, Ayandeh, Melall, Sarmayeh, etc.
  • PSPs and fintechs: Zarrinpal, Pay.ir, Payping, NextPay, IdPay, Vandar, SnappPay, Digipay, etc.
  • Payment networks and institutions: Shaparak, Bank Markazi, Iran Europe, Standard Chartered, and more.

Each brand includes two variants:

  • ColorIcon → full-color version of the official logo
  • Icon → monochrome (solid) version

📦 Installation

# with npm
npm install @snapp-store/iranian-banks-react-icons

# or with yarn
yarn add @snapp-store/iranian-banks-react-icons

🚀 Usage

Each icon is exported as a named ES module.

Example

import {
  MelliColorIcon,
  MelliIcon,
  PasargadColorIcon,
  ZarrinpalIcon
} from '@snapp-store/iranian-banks-react-icons';

export default function Example() {
  return (
    <div style={{ display: 'flex', gap: 16, alignItems: 'center' }}>
      <MelliColorIcon width={48} height={48} />
      <MelliIcon width={48} height={48} fill="#333" />
      <PasargadColorIcon width={48} height={48} />
      <ZarrinpalIcon width={48} height={48} fill="#000" />
    </div>
  );
}

All icons are React components that accept standard SVG props:

type IconProps = React.SVGProps<SVGSVGElement>;

🧱 CommonJS Support

You can also import using require (Node-style):

const { MelliIcon, MellatColorIcon } = require('@snapp-store/iranian-banks-react-icons');

Each export maps directly to an individual .js file, for example:

module.exports.MelliIcon = require('./MelliIcon.js');
module.exports.MelliColorIcon = require('./MelliColorIcon.js');

🖌️ Naming Convention

Each icon follows this consistent naming pattern:

| Type | Example | Description | |------|----------|-------------| | Color version | MelliColorIcon | Official multicolor SVG | | Monochrome version | MelliIcon | Single-color (solid) variant |


⚙️ Tech Details

  • ✅ Framework: React (no dependencies other than react and react-dom)
  • ✅ File format: optimized inline SVG components
  • ✅ Supports tree-shaking — import only what you need
  • ✅ Compatible with TypeScript

🧩 List of Available Icons

AsanPardakht, Ayandeh, BankMarkazi, Bankino, BluBank, Caspian, Dey, Digipay,
EghtesadNovin, Futurebank, Gardeshgari, Hesabit, Idpay, IranEurope, IranVenezuela,
IranZamin, Karafarin, Keshavarzi, KhavarMianeh, Maskan, MehrIran, Melall, Mellat,
Melli, NextPay, Noor, Parsian, Pasargad, PasargadPep, PayIr, Payping, Post, Refah,
Resalat, Sadad, Saderat, Saman, SamanKish, SanatMadan, Sarmayeh, Sepah, SepahMerged*,
Shahr, Shaparak, Sina, SnappPay, StandardChartered, TaavonEslami, Tejarat, Tosee,
ToseeSaderat, ToseeTaavon, Vandar, Zarrinpal, Zibal

Each with both Icon and ColorIcon variants.


🧠 Example with Dynamic Rendering

You can dynamically render a logo by name:

import * as Icons from '@snapp-store/iranian-banks-react-icons';

function BankLogo({ name }) {
  const Icon = Icons[`${name}ColorIcon`] || Icons[`${name}Icon`];
  return Icon ? <Icon width={48} height={48} /> : null;
}

<BankLogo name="Saderat" />;

📄 License

MIT © Snapp Store
Feel free to use and modify in your React projects.


💬 Contributing

Pull requests and new icons are welcome!
If you find missing or outdated logos, open an issue or PR on GitHub.