Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
tailwindcss-plugin-icons
Advanced tools
Tailwind CSS implementation of @unocss/preset-icons.
npm install tailwindcss-plugin-icons
pnpm add tailwindcss-plugin-icons
yarn add tailwindcss-plugin-icons
npm install @iconify-json/[the-icon-set-name]
.tailwind.config
file, for example, heroicons:const { Icons } = require('tailwindcss-plugin-icons')
/**
* @type {import('tailwindcss-plugin-icons').Options}
*/
const options = ({ theme }) => ({
heroicons: {
icons: {
'plus-circle': {
cursor: 'pointer',
color: theme('colors.emerald.600'),
'&:hover': {
color: theme('colors.emerald.800')
}
},
'trash?bg': {}
},
scale: 1.5,
includeAll: true,
location: 'https://esm.sh/@iconify-json/heroicons@1.1.6/icons.json'
}
})
/**
* @type {import('tailwindcss').Config}
*/
module.exports = {
plugins: [Icons(options)]
}
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.
<div class="i-heroicons-plus-circle"></div>
<div class="bg-heroicons-trash-black"></div>
FAQs
Tailwind CSS icons with classes
The npm package tailwindcss-plugin-icons receives a total of 140 weekly downloads. As such, tailwindcss-plugin-icons popularity was classified as not popular.
We found that tailwindcss-plugin-icons demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.