Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

iconly

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iconly

Iconly is designed to load and cache SVG icons in the browser, using IndexedDB to store the data. It retrieves the icons from a given SVG file, stores them in IndexedDB, and inserts them into the DOM for easy access and use.

  • 1.5.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

iconly

Iconly is designed to load and cache SVG icons in the browser, using IndexedDB to store the data. It retrieves the icons from a given SVG file, stores them in IndexedDB, and inserts them into the DOM for easy access and use.

npm GitHub package version NPM Downloads

1kB gzipped

Demo


Install

$ yarn add iconly

Import

import Iconly from 'iconly';

Usage

const iconly = new Iconly({
  file: './sprite.svg',
  version: '1.0',
  debug: true,
});

iconly.init().then(() => console.log('Iconly is initialized and icons are loaded.'));
<svg>
  <use href="#icon-name"></use>
</svg>

File with icons

<svg preserveAspectRatio="none" fill="none">
  <symbol id="icon-one" viewBox="0 0 300 300">
    <path ... />
  </symbol>
  <symbol id="icon-two" viewBox="0 0 300 300">
    <path ... />
  </symbol>
  ...
</svg>

Options

OptionTypeDefaultDescription
filestring'./icons.svg'The URL of the SVG file containing the icons.
versionstring'1.0'The version of the icon set.
debugbooleanfalseIf true, debug information and errors will be logged to the console.
containerstring | HTMLElementdocument.bodyThe container element where the icons will be injected. Can be a CSS selector string or an HTMLElement.

License

iconly is released under MIT license

Keywords

FAQs

Package last updated on 02 Jun 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc