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

@iran-utils/iranian-banks-react-icons

v1.0.3

Published

React SVG icon library for Iranian banks and payment providers — 60+ logos with color and monochrome variants.

Downloads

571

Readme

@iran-utils/iranian-banks-react-icons

npm version npm downloads Bundle size License: MIT React

React SVG icon library for 60+ Iranian banks, PSPs, and payment providers — logos for Melli, Mellat, Saderat, Tejarat, Pasargad, Saman, Parsian, Zarrinpal, Shaparak, and more. Every icon ships in full-color and monochrome variants.

→ Live Playground & Icon Browser


Installation

npm install @iran-utils/iranian-banks-react-icons
# or
pnpm add @iran-utils/iranian-banks-react-icons
# or
yarn add @iran-utils/iranian-banks-react-icons

Peer dependency: React 16.13+ / 17 / 18 / 19


Quick Start

import { MelliColorIcon, MellatIcon, ZarrinpalColorIcon } from '@iran-utils/iranian-banks-react-icons';

export default function App() {
  return (
    <div>
      {/* Full-color logo */}
      <MelliColorIcon width={48} height={48} />

      {/* Monochrome — tintable via fill */}
      <MellatIcon width={48} height={48} fill="#0066cc" />

      {/* All SVG props are supported */}
      <ZarrinpalColorIcon
        width={64}
        height={64}
        className="bank-logo"
        style={{ borderRadius: 8 }}
        aria-label="Zarrinpal"
        onClick={() => console.log('clicked')}
      />
    </div>
  );
}

TypeScript

Full TypeScript support is included. Every icon accepts JSX.IntrinsicElements['svg'] — all standard SVG attributes including width, height, fill, stroke, className, style, aria-*, ref, event handlers, and more.

import type { ComponentProps } from 'react';
import { MelliColorIcon } from '@iran-utils/iranian-banks-react-icons';

// Infer icon props
type IconProps = ComponentProps<typeof MelliColorIcon>;

Tree Shaking

The package is fully tree-shakeable. Only the icons you import are included in your bundle.

// Only MelliColorIcon and MellatIcon end up in the bundle
import { MelliColorIcon, MellatIcon } from '@iran-utils/iranian-banks-react-icons';

Icon Variants

Every bank has two exports:

| Variant | Name pattern | Usage | |---|---|---| | Color | [Bank]ColorIcon | Full-color official logo | | Mono | [Bank]Icon | Single-color; pass fill to tint |

import { PasargadColorIcon, PasargadIcon } from '@iran-utils/iranian-banks-react-icons';

<PasargadColorIcon width={48} height={48} />           // full color
<PasargadIcon width={48} height={48} fill="currentColor" /> // inherits text color

Props

All icons are standard function components. They accept every prop an <svg> element accepts:

| Prop | Type | Description | |---|---|---| | width | number \| string | Icon width (default: SVG viewBox width) | | height | number \| string | Icon height (default: SVG viewBox height) | | fill | string | Fill color — most useful on monochrome icons | | className | string | CSS class | | style | CSSProperties | Inline styles | | aria-label | string | Accessibility label | | ref | Ref<SVGSVGElement> | Forwarded to the <svg> element | | onClick | MouseEventHandler | Click handler | | …and all other SVG attributes | | |


Available Icons

Browse all icons interactively: Playground →

| Bank | Color | Mono | |---|---|---| | Bank Melli Iran | MelliColorIcon | MelliIcon | | Mellat | MellatColorIcon | MellatIcon | | Saderat | SaderatColorIcon | SaderatIcon | | Tejarat | TejaratColorIcon | TejaratIcon | | Sepah | SepahColorIcon | SepahIcon | | Keshavarzi | KeshavarziColorIcon | KeshavarziIcon | | Maskan | MaskanColorIcon | MaskanIcon | | Refah | RefahColorIcon | RefahIcon | | Post Bank | PostColorIcon | PostIcon | | Sanat & Madan | SanatMadanColorIcon | SanatMadanIcon | | Taavon Eslami | TaavonEslamiColorIcon | TaavonEslamiIcon | | Pasargad | PasargadColorIcon | PasargadIcon | | Saman | SamanColorIcon | SamanIcon | | Parsian | ParsianColorIcon | ParsianIcon | | Ayandeh | AyandehColorIcon | AyandehIcon | | Karafarin | KarafarinColorIcon | KarafarinIcon | | Eghtesad Novin | EghtesadNovinColorIcon | EghtesadNovinIcon | | Sina | SinaColorIcon | SinaIcon | | Shahr | ShahrColorIcon | ShahrIcon | | Gardeshgari | GardeshgariColorIcon | GardeshgariIcon | | Khavar Mianeh | KhavarMianehColorIcon | KhavarMianehIcon | | Dey | DeyColorIcon | DeyIcon | | Caspian | CaspianColorIcon | CaspianIcon | | Sarmayeh | SarmayehColorIcon | SarmayehIcon | | Resalat | ResalatColorIcon | ResalatIcon | | Iran Zamin | IranZaminColorIcon | IranZaminIcon | | Iran Europe | IranEuropeColorIcon | IranEuropeIcon | | Iran Venezuela | IranVenezuelaColorIcon | IranVenezuelaIcon | | Noor | NoorColorIcon | NoorIcon | | Mehr Iran | MehrIranColorIcon | MehrIranIcon | | Melall | MelallColorIcon | MelallIcon | | Tosee | ToseeColorIcon | ToseeIcon | | Tosee Saderat | ToseeSaderatColorIcon | ToseeSaderatIcon | | Tosee Taavon | ToseeTaavonColorIcon | ToseeTaavonIcon | | Standard Chartered | StandardCharteredColorIcon | StandardCharteredIcon | | Blu Bank | BluBankColorIcon | BluBankIcon | | Bankino | BankinoColorIcon | BankinoIcon | | Future Bank | FuturebankColorIcon | FuturebankIcon |

| Provider | Color | Mono | |---|---|---| | Zarrinpal | ZarrinpalColorIcon | ZarrinpalIcon | | Pay.ir | PayIrColorIcon | PayIrIcon | | Payping | PaypingColorIcon | PaypingIcon | | NextPay | NextPayColorIcon | NextPayIcon | | IDPay | IdpayColorIcon | IdpayIcon | | Vandar | VandarColorIcon | VandarIcon | | Digipay | DigipayColorIcon | DigipayIcon | | Zibal | ZibalColorIcon | ZibalIcon | | Hesabit | HesabitColorIcon | HesabitIcon | | Asan Pardakht | AsanPardakhtColorIcon | AsanPardakhtIcon | | Snapp Pay | SnappPayColorIcon | — |

| Provider | Color | Mono | |---|---|---| | Saman Kish | SamanKishColorIcon | SamanKishIcon | | Pasargad PEP | PasargadPepColorIcon | PasargadPepIcon | | Sadad | SadadColorIcon | SadadIcon |

| Provider | Color | Mono | |---|---|---| | Shaparak | ShaparakColorIcon | ShaparakIcon | | Bank Markazi | BankMarkaziColorIcon | BankMarkaziIcon |

| Bank | Color | Mono | |---|---|---| | Ansar (merged) | SepahMergedAnsarColorIcon | SepahMergedAnsarIcon | | Ghavamin (merged) | SepahMergedGhavaminColorIcon | SepahMergedGhavaminIcon | | Hekmat (merged) | SepahMergedHekmatColorIcon | SepahMergedHekmatIcon | | Kosar (merged) | SepahMergedKosarColorIcon | SepahMergedKosarIcon | | Mehr Eghtesad (merged) | SepahMergedMehrEghtesadColorIcon | SepahMergedMehrEghtesadIcon |


Related Packages

| Package | Description | |---|---| | @iran-utils/iranian-banks-vue-icons | Same icons for Vue 3 | | @iran-utils/iranian-banks-icons-core | Framework-agnostic SVG data (viewBox + content strings) |


License

MIT © Houtan Rocky