All Projects → contactlab → Ikonograph

contactlab / Ikonograph

Licence: apache-2.0
⚠️ This project is no longer mantained

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ikonograph

Svg To Ts
Build performant SVG icon libraries by converting raw SVG files to TypeScript that is optimized for modern tree shaking mechanisms.
Stars: ✭ 131 (+907.69%)
Mutual labels:  library, svg, icons
Ngx Ui
🚀 Style and Component Library for Angular
Stars: ✭ 534 (+4007.69%)
Mutual labels:  library, icons
Iconfontcppheaders
C, C++ headers and C# classes for icon fonts: Font Awesome, Fork Awesome, Material Design, Kenney game icons and Fontaudio
Stars: ✭ 509 (+3815.38%)
Mutual labels:  library, icons
Librecms
Free Open Source Content Management System, based on PHP, Bootstrap and jQuery.
Stars: ✭ 12 (-7.69%)
Mutual labels:  svg, icons
Darkbetter
Dark theme for ruTorrent, but better
Stars: ✭ 12 (-7.69%)
Mutual labels:  svg, icons
Feather
Simply beautiful open source icons
Stars: ✭ 21,029 (+161661.54%)
Mutual labels:  svg, icons
Icons
All SVG icons available on http://game-icons.net
Stars: ✭ 598 (+4500%)
Mutual labels:  svg, icons
Deepsvg
[NeurIPS 2020] Official code for the paper "DeepSVG: A Hierarchical Generative Network for Vector Graphics Animation". Includes a PyTorch library for deep learning with SVG data.
Stars: ✭ 403 (+3000%)
Mutual labels:  library, svg
Payment Icons
💳 Payment / Ecommerce related svg icon packs
Stars: ✭ 671 (+5061.54%)
Mutual labels:  svg, icons
Itext7 Dotnet
iText 7 for .NET is the .NET version of the iText 7 library, formerly known as iTextSharp, which it replaces. iText 7 represents the next level of SDKs for developers that want to take advantage of the benefits PDF can bring. Equipped with a better document engine, high and low-level programming capabilities and the ability to create, edit and enhance PDF documents, iText 7 can be a boon to nearly every workflow.
Stars: ✭ 698 (+5269.23%)
Mutual labels:  library, svg
Octicons
A scalable set of icons handcrafted with <3 by GitHub
Stars: ✭ 7,039 (+54046.15%)
Mutual labels:  svg, icons
Iconify
Universal icon framework. One syntax for FontAwesome, Material Design Icons, DashIcons, Feather Icons, EmojiOne, Noto Emoji and many other icon sets (90+ icon sets, 80,000+ icons).
Stars: ✭ 439 (+3276.92%)
Mutual labels:  svg, icons
Google Material Icons For Sketch
Google Material Icons Library for Sketch App
Stars: ✭ 420 (+3130.77%)
Mutual labels:  library, icons
Azure Design
Here you will find my complete Azure Visio Stencil and bonus SVG and PNG versions for all of the Azure Service and configuration items.
Stars: ✭ 470 (+3515.38%)
Mutual labels:  svg, icons
Icons
Official open source SVG icon library for Bootstrap.
Stars: ✭ 5,735 (+44015.38%)
Mutual labels:  svg, icons
Evil Icons
Simple and clean SVG icon pack with the code to support Rails, Sprockets, Node.js, Gulp, Grunt and CDN
Stars: ✭ 4,944 (+37930.77%)
Mutual labels:  svg, icons
Mono Icons
Stars: ✭ 899 (+6815.38%)
Mutual labels:  svg, icons
Pixo
Convert SVG icons into React components
Stars: ✭ 371 (+2753.85%)
Mutual labels:  svg, icons
Jam
Jam icons is a set of SVG icons designed for web projects, illustrations, print projects, etc. Licensed under MIT
Stars: ✭ 398 (+2961.54%)
Mutual labels:  svg, icons
Browser Logos
🗂 High resolution web browser logos
Stars: ✭ 5,538 (+42500%)
Mutual labels:  svg, icons

⚠️ This project is no longer mantained

Google ChromeFirefoxSafariMicrosoft Edge NPM Downloads

Ikonograph is the official Contactlab icons library. You can use it as npm dependency, you have just to import the css file and you can start to add icons everywhere. You can see all available icons HERE.

Installation

Download the .zip package or install via a package manager (Yarn or NPM):

$ npm install ikonograph --save

Quick use

You can use Ikonograph as svg sprite or web component.

SVG Sprite

You can choose to use the svg-sprite version of Ikonograph. SVG sprite is a set of svg symbols that you can import and use inside your html, read about icon fonts vs svg .

There is 2 ways to use the SVG sprite:

As external resource

This is the new way to use svg-sprite icons, you don't have to include the sprite content inside your page, just link the source file inside the <use> tag:

<svg width="24" height="24">
  <use xlink:href="path/to/ikonograph.svg#agenda"></use>
</svg>

By inclusion (the old way)

You have to grab the ikonograph.svg file content and put it inside your main html file, just after the <body> tag.

<div style="display: none">
  <svg xmlns="http://www.w3.org/2000/svg"><!-- rest of the content--></svg>
</div>

NOTE: You have to put the content inside an hidden container to avoid the blank space.

You can now add icons everywhere:

<svg width="24" height="24">
  <use xlink:href="#[icon-name]"></use>
</svg>

Web Component iconset

Import the ikonograph.js component inside your file:

<script src="path/to/ikonograph/dist/ikonograph.js">

Use the ikn-icon element to display the icon by adding the icon name:

<ikn-icon icon="agenda" size="24px"></ikn-icon>

In browsers that don't support Shadow DOM (Firefox or Edge), or, if you are using the polyfill, it isn't possible to update attribute values ​​dynamically without a page reload.

As js module

You can also use ikonograph as js module inside your bundler by importing it:

import 'ikonograph/dist/ikonograph';

How to use & Documentation

For detailed instruction on how to use the Ikonograph library and the available icons refer to the Contactlab Pattern Library documentation.

Git branching policies

Any feature/bug fixing/refactor must be developed on a feature branch derived from the develop branch and integrate the changes through a pull request to have a code review.

License

Released and distributed under the Apache 2.0 license.

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].