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

inticons

v0.8.13

Published

Icons library and toolkit built by INTEGRATION Corp.

Downloads

460

Readme

Install

npm install inticons

Usage

Import

CSS

@import url('inticons/fonts/inticons.bundle.min.css');

Vue

<script>
  import 'inticons/fonts/inticons.bundle.min.css';

  export default {
    // ...
  };
</script>

Component

Each icon can be referenced by their name prefixed with ii-. For example, You can get the arrow-right icon with using ii-arrow-right. You can use font-size and color properties to change the icon appearance.

<i class="ii ii-arrow-right"></i>

Helper Classes

Inticons contains many helper classes to quickly modify the look of the icons.

Rotate

  • ii-rotate-45: Rotate icon 45 Degrees.
  • ii-rotate-90: Rotate icon 90 Degrees.
  • ii-rotate-135: Rotate icon 135 Degrees.
  • ii-rotate-180: Rotate icon 180 Degrees.
  • ii-rotate-225: Rotate icon 225 Degrees.
  • ii-rotate-270: Rotate icon 270 Degrees.
  • ii-rotate-315: Rotate icon 315 Degrees.
<i class="ii ii-arrow-right ii-rotate-45"></i>

Flip

  • ii-flip-h: Flip icon horizontal.
  • ii-flip-v: Flip icon vertical.
<i class="ii ii-arrow-right ii-flip-h"></i>

ii-rotate-* and ii-flip-* classes cannot be used on the same element at the same time.

Size

  • ii-2x: Doubles the size.
  • ii-3x: Triples the size.
  • ii-4x: Quadraples the size.
<i class="ii ii-arrow-right ii-4x"></i>

Spin

  • ii-spin: Spinning icon.
<i class="ii ii-arrow-right ii-spin"></i>

Weight

Some icons has ii-weight-600 class, which thicken the icon.

  • ii-weight-600: Thicken the icon.
<i class="ii ii-arrow-right ii-weight-600"></i>

Contributor

👥 INTEGRATION Corp.

📝 License

Inticons's code (all files, except fonts and svg icons) is distributed under MIT license. Embedded fonts and svg icons are distributed under UI8 primary licenses. See icons info on UI8 website for licensing agreement.