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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@transferwise/icons

v3.13.0

Published

Wise SVG icons

Downloads

831

Readme

Wise icons

npm npm

Check out the live demo

Each Icon is designed in three sizes: 16 (default), 24, and 32 pixels. The icon set are mostly outline icons but there are also some filled icons. These are all variations of an outline icon with -fill added as a suffix. Icons with a filled version have a blue badge in the Live Demo.

React and AngularJS icon components generated by script files (see src/build-scripts folder).

Usage

Install

pnpm add @transferwise/icons

Import and use it with

React

Edit TransferWise Icons | React

import { Bank as BankIcon } from '@transferwise/icons';

const YourComponent = () => <BankIcon size={24} data-testid="bank-icon" />;

will result in

<span class="tw-icon tw-icon-bank" aria-hidden="true" role="none">
  <svg width="24" height="24" fill="currentColor">
    <path
      d="M22.003 9.408l-10-7.405-10 7.405 1.195 1.595 8.805-6.52 8.805 6.52 1.195-1.595z"
    ></path>
    <path d="M13 10v10h4v-7h2v7h2v2H3v-2h2v-7h2v7h4V10h2z"></path>
  </svg>
</span>

map of all icons (useful for dynamic icon pick up):

import * as icons from '@transferwise/icons';

const AchIcon = icons['Ach'];

<AchIcon />
<icons.Bank />

Each component has className property as well, so you can avoid wrapping your component in extra parent elements.

<BankIcon size={24} className="bank-profile-icon" />

AngularJS

Edit TransferWise Icons | Angular JS

import { TwIconsModule } from '@transferwise/icons/lib/angular';

// add it to the list of dependencies
angular.module('your-app-name', [TwIconsModule]);

and in template

<tw-bank-icon size="24"></tw-bank-icon>

<tw-icon name="bank" size="24"></tw-icon>

<tw-activity-icon size="24"></tw-activity-icon>

<tw-balance-icon size="16"></tw-balance-icon>

<tw-icon name="balance" size="16"></tw-icon>

Necessary CSS

To display the icons properly, you need to import CSS styles in your app. This file only makes sure that <svg>s are rendered as block elements and handles a11y features.

@import '~@transferwise/icons/lib/styles/main.min.css';

or just import it from JS depending on your build system:

import '@transferwise/icons/lib/styles/main.min.css';

Styling

Each component has a general .tw-icon CSS class and a specific one that includes the icon's name in kebab-case, e.g .tw-icon-card-wise

Coloring icons

The CSS rule color cascades to the <svg> shapes, because each inline SVG shapes all have the fill property set to currentColor. More info about Cascading SVG Fill Color. You can set the color of the icons, by simply using the following CSS

/* to set the color of all the icons */
.tw-icon {
  color: #2ed06e;
}

/* to set the color of individual icons */
.tw-icon-activity {
  color: #00b9ff;
}
.tw-icon-fast-flag {
  color: #00b9ff;
}

/* if an icon inside another element should have a specific color */
.parent-element > .tw-icon-fast-flag {
  color: #00b9ff;
}

/* change the color of the icon on :hover */
.parent-element:hover > .tw-icon-fast-flag {
  color: red;
}

Accessibility

Each React icon component has an optional title property in case your icon has a semantic meaning, use this property, so it will be visible for Screen Readers.

<ActivityIcon size={24} title="Wise card transcation" />

By default icon will be removed from accessibility tree as aria-hidden="true" and role="none" attributes will be added.

Contributing

Add / remove / change icon(s) in the wise-atoms project and then consume here. wise-atoms is a submodule so use --recursive when cloning or fix it later like this

Follow the naming convention, use kebab-case for naming the icon.

The build process for parsing, optimizing and generating individual icon components out of SVG files is done by script files, that you can find the in the src/build-scripts folder. Rollup.js is used for generating the ES and UMD bundles of the library.

Follow these steps, if you'd like to contribute to the project:

  1. Run pnpm run build to check your changes.
  2. For a single-run check of version match and linting errors, run pnpm run test.
  3. Bump version number in package.json according to semver and add an item to CHANGELOG.md.
  4. Submit your pull request from a feature branch and get code reviewed.
  5. If the pull request is approved and the Github Action passes, you will be able to squash and merge.
  6. (CircleCI build will fail. I don't know how to get it to stop running)
  7. Code will automatically be released to GitHub and published to npm with the version specified in the changelog and package file.