Socket
Socket
Sign inDemoInstall

tailwindcss-plugin-icons

Package Overview
Dependencies
133
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tailwindcss-plugin-icons

Tailwind CSS icons with classes


Version published
Weekly downloads
230
increased by93.28%
Maintainers
1
Install size
33.9 kB
Created
Weekly downloads
 

Readme

Source

tailwindcss-plugin-icons

npm socket_security example license

Tailwind CSS implementation of @unocss/preset-icons.

npm install tailwindcss-plugin-icons
pnpm add tailwindcss-plugin-icons
yarn add tailwindcss-plugin-icons

How to Use

  1. Search the available icon sets at Icônes or Iconify and choose the icons your project needs.

  2. Install any required icon set with npm install @iconify-json/[the-icon-set-name].

  3. Configure the plugin in your tailwind.config file, for example, heroicons:

    import type { Config } from 'tailwindcss'
    import { Icons, type Options } from 'tailwindcss-plugin-icons'
    
    const options: Options = ({ theme }) => ({
      heroicons: {
        icons: {
          'plus-circle': {
            cursor: 'pointer',
            color: theme('colors.emerald.600'),
            '&:hover': {
              color: theme('colors.emerald.800'),
            },
          },
          'trash?bg': {},
        },
        includeAll: true,
        scale: iconName => (iconName.endsWith('-20-solid') ? 1.25 : 1.5),
        location: 'https://esm.sh/@iconify-json/heroicons@1.1.9/icons.json',
      },
    })
    
    export default {
      plugins: [Icons(options)],
    } as Config
    

    The plugin's options are a function. It gets forwarded the Tailwind CSS plugin API and returns the selected icons with optional default style and scale. After the icon's name, you can pass ?bg or ?mask to force a specific render method. Finally, you can use includeAll: true to have every icon in the icon set added as a Tailwind source.

  4. Write icons with Tailwind CSS classes directly in your markup:

    <div class="i-heroicons-plus-circle"></div>
    <div class="bg-heroicons-trash-black"></div>
    

Comprehensive Example

Keywords

FAQs

Last updated on 28 Jan 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc