Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@iconsauce/plugin-mdi-svg

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@iconsauce/plugin-mdi-svg

This plugin is created to work with iconsauce

unpublished
latest
Source
npmnpm
Version
2.0.2
Version published
Maintainers
1
Created
Source

plugin-mdi-svg

This plugin scrapes Material Design Icons node module @mdi/svg icon library to make you use it with iconsauce:

module.exports = {
  content: [
    './src/**/*.{tsx,ts}',
  ],
  fontSize: '24px',
  plugin: [
    require('@iconsauce/plugin-mdi-svg'),
  ],
}

You will be able to use these icons in your project.

const Component = () => {

  const icon = 'mdi/grass'

  return <section className={ icon }>
    <div className="grid desktop:grid-cols-4 mdi/emoticon-happy tablet:grid-cols-2 grid-cols-1 desktop:gap-6 gap-12 desktop:auto-rows-fr desktop:items-end">
      <i className="mdi/access-point"/>
      <span className='bg-adjust-tone-01/24 mgg/terminal'/>
      <div>
        <footer title="mdi/gondola"></footer>
      </div>
    </div>
  </section>
}
export default Component

This plug-in will generate only icons used:

@font-face {
  font-family: "iconsauce";
  src: url(data:font/truetype;charset=utf-8;base64,AA...D;);
}
[class^="mdi/"],
[class*=" mdi/"] {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "iconsauce" !important;
  font-size: 24px;
  font-style: normal;
}
.mdi\/access-point::before { content: "\ea01"; }
.mdi\/emoticon-happy::before { content: "\ea02"; }
.mdi\/gondola::before { content: "\ea03"; }
.mdi\/grass::before { content: "\ea04"; }
.mdi\/harddisk::before { content: "\ea05"; }

Keywords

plugin

FAQs

Package last updated on 16 Feb 2022

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