All Projects → onfido → castor-icons

onfido / castor-icons

Licence: Apache-2.0 license
Collection of icons for Castor published as SVGs and React components

Programming Languages

typescript
32286 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to castor-icons

lunar-icons
A set of beautiful handcrafted SVG icons.
Stars: ✭ 18 (+50%)
Mutual labels:  svg-icons
font-gis
Icon font and SVG for use with GIS and spatial analysis tools
Stars: ✭ 121 (+908.33%)
Mutual labels:  svg-icons
svg-gobbler
Open source browser extension that makes designing and developing easier by finding, processing, exporting, optimizing, and managing SVG content.
Stars: ✭ 272 (+2166.67%)
Mutual labels:  svg-icons
webpack-svg-sprite-sample
a webpack SVG sprite sample when using Vue and React
Stars: ✭ 19 (+58.33%)
Mutual labels:  svg-icons
edent.tel
A semantic contact page built around SVG
Stars: ✭ 28 (+133.33%)
Mutual labels:  svg-icons
portfolio
My personal portfolio to show my skills, experience, and articles I published.
Stars: ✭ 81 (+575%)
Mutual labels:  react-icons
vue-svg-icon-loader
Turn SVG files into VueJS Components
Stars: ✭ 24 (+100%)
Mutual labels:  svg-icons
svg-symbol-sprite-loader
Loader and plugin for generating an SVG symbol sprite
Stars: ✭ 15 (+25%)
Mutual labels:  svg-icons
acf-icon-picker
Creates an icon picker ACF field
Stars: ✭ 79 (+558.33%)
Mutual labels:  svg-icons
react-crud-icons
57 SVG icons for CRUD applications, packaged as a React component with light & dark themes and tooltip.
Stars: ✭ 19 (+58.33%)
Mutual labels:  svg-icons
react-ratings-declarative
A customizable rating component for selecting x widgets or visualizing x widgets
Stars: ✭ 41 (+241.67%)
Mutual labels:  svg-icons
flagpack
A lightweight flag icon toolkit for the web.
Stars: ✭ 51 (+325%)
Mutual labels:  svg-icons
rails-heroicon
Ruby on Rails views helpers for the awesome heroicons by Steve Schoger.
Stars: ✭ 23 (+91.67%)
Mutual labels:  svg-icons
minidenticons
Super lightweight SVG identicon (icon avatar) generator
Stars: ✭ 89 (+641.67%)
Mutual labels:  svg-icons
Thomas-George-T
Readme for Github Profile. Don't just fork it, Star it too ⭐!
Stars: ✭ 31 (+158.33%)
Mutual labels:  svg-icons
bookmarks
Bookmarks that I ❤️
Stars: ✭ 151 (+1158.33%)
Mutual labels:  svg-icons
elm-feather
Feather icons for elm
Stars: ✭ 73 (+508.33%)
Mutual labels:  svg-icons
majesticons
A versatile, beautiful, and scalable iconset. 760 icons each in line and solid style.
Stars: ✭ 98 (+716.67%)
Mutual labels:  svg-icons
jquery-svg-convert
Convert .svg images to code on the fly with jQuery
Stars: ✭ 30 (+150%)
Mutual labels:  svg-icons
crypto-icons
Cryptocurrency icons by Guarda
Stars: ✭ 54 (+350%)
Mutual labels:  svg-icons

Castor Icons

npm version Bundle size

This is Castor addition providing a collection of selected Boxicons and custom icons.

Get started

Install package:

npm install @onfido/castor-icons

Then make icons available by following either plain/bundled code approach, or by using React components.

Use with plain code

When referring to a fragment identifier for an icon to be used, a link is made to icons.svg sprite through the <use> element. The sprite must be public, copy it from svg directory of this package, or configure the bundler to do so.

Straight after this you can easily add an icon to your HTML code, e.g. "passport" if copied to same .castor-icons directory:

<svg fill="currentColor" focusable="false" height="24" width="24">
  <use href="/.castor-icons/icons.svg#passport"></use>
</svg>

Use with bundled code

Import sprite source to be used when referring to a fragment identifier for icon in JavaScript, like such:

import icons from '@onfido/castor-icons/svg/icons.svg';

document.body.innerHTML = `
  <svg fill="currentColor" focusable="false" height="24" width="24">
    <use href="${icons}#passport"></use>
  </svg>
`;

Your bundler must handle the icons.svg sprite asset for it to be available to public. For example, Parcel will do this for you automatically, but if you're using webpack then you should add and configure an additional loader like file-loader to handle svg file type.

Use React components

Every SVG icon is also exported as React component, e.g. "passport":

import { IconPassport } from '@onfido/castor-icons';
import React, { Fragment } from 'react';

const Component = () => (
  <Fragment>
    <IconPassport />
    {/* ...anything else e.g. text */}
  </Fragment>
);

You may modify SVG appearance by passing component props such as "fill" for changing color (defaults to "currentColor"), or sizing with "height" and "width".

But if you prefer to use a sprite, feel free to (only once) inline it in your app using the Icons component:

import { Icons } from '@onfido/castor-icons';
import React, { Fragment } from 'react';

const App = () => (
  <Fragment>
    <Icons />
    {/* ...anything else e.g. app routes */}
  </Fragment>
);

Then refer to a fragment identifier directly without setting any sprite source, like this:

const IconPassport = () => (
  <svg fill="currentColor" focusable="false" height="24" width="24">
    <use href="#passport"></use>
  </svg>
);

Use individual SVG icons (advanced)

The nature of an <svg> element does not allow to embed individual icons, unfortunately.

To use individual SVGs (also distributed within this package) one possible solution is to use CSS Masks, e.g. for "passport" icon:

.icon-passport {
  display: inline-block;
  height: 24px;
  width: 24px;
  mask: url('~@onfido/castor-icons/svg/icon-passport.svg') no-repeat;
  mask-size: 100%;
  background-color: currentColor;
}

Then you're able to use such directly in your HTML:

<i class="icon-passport"></i>

Please keep in mind that the browser support is somewhat limited.

Improve accessibility

  • Focus handling is broken in IE and Edge browsers. When embedding via an <svg> element, we recommend to set focusable="false".

  • Be mindful of screen readers by applying the appropriate aria- attributes depending on each icon context and intent, for example aria-hidden or aria-label.

  • Learn more about accessibility quirks

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].