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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@logo-software/icons

v11.0.0

Published

Icon Module is used to add icons to Logo Elements Design System guide-based web and mobile applications. Our icons depend on the *Streamline Icons* paid version. For usage, just download and import `scss` to your project main `style.scss` is enough. It is

Downloads

57

Readme

Icon Module

Icon Module is used to add icons to Logo Elements Design System guide-based web and mobile applications. Our icons depend on the Streamline Icons paid version. For usage, just download and import scss to your project main style.scss is enough. It is so easy to use.

Click here for demo

License

Our licence placed at License file. Please click and read for usage details.

Installation

There are several ways to install Logo Icons to the project.

1. Font Icon

Our icons also can be usable as Font Icon. You can download Font Icon version to your project from here.

2. Bitbucket
  1. Download Icons's scss file from Bitbucket.
  2. Save as "style-file-name.css"
  3. Place it to your assets folder, or where you want
  4. Open your main css file.
  5. Then add below code for import it to your own css file
@import url("./folder-path/style.css");
3. Npm

This package is private package so we decide to hold it in our own repository. Other side, our all public npm packages is located at https://www.npmjs.com/~logofe.

To install Icons Module throught npm:

  1. Set your npm registry to Logo Nexus Repository Manager if not https://dregistry.logo.com.tr/.
$ npm set registry https://dregistry.logo.com.tr/repository/npm-logofe/
  1. Please login for authentication, if you are not signed in.
$ npm login
  1. At your project call npm install command. This below command will create node_modules folder at same level path.
$ npm install @logo-software/icons -s
  1. Then add below code for import it to your own scss file
@import "./node_modules/@logo-software/icons/style";

Usage In Angular Component

Below code sample was created for Angular based applications. Our icon module is not dependent on any platform file. You can use it in every web application.

your-main-style.scss

// import icon style your scss code
@import "~@logo-software/icons/style";

body{}

any.component.html

<!-- this will add search icon to input to right side of it.-->
<button class="le-search icon-right">Right</button>
<!-- this code add search icon to the left side-->
<button class="le-search icon-left">Left</button
  <!-- this code add search icon to the center (default)-->
<button class="le-save">Center</button>

For more detail please visit: Icons Module