
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
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
Search the available icon sets at Icônes or Iconify and choose the icons your project needs.
Install any required icon set with npm install @iconify-json/[the-icon-set-name]
.
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.
Write icons with Tailwind CSS classes directly in your markup:
<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 148 weekly downloads. As such, tailwindcss-plugin-icons popularity was classified as not popular.
We found that tailwindcss-plugin-icons demonstrated a not healthy version release cadence and project activity because the last version was released 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.