Using Iconify plugin for Tailwind CSS
Iconify plugin for Tailwind CSS package has several plugins. This documentation covers addDynamicIconSelectors plugin.
The Difference
What makes this plugin different from addIconSelectors()?
It is easier to use.
- No need to configure plugin.
- One class name per icon.
Downsides:
- Less compact CSS.
- Weird selectors (caused by Tailwind CSS plugin system limitations).
HTML
To use icons in HTML, all you have to do is create <span> element with a class name that contains icon name.
Syntax of class names is this: "icon-[{prefix}--{name}]", where "{prefix}" is icon set prefix, "{name}" is icon name.
Examples:
<span class="icon-[ph--alarm-duotone]"></span>
<span class="icon-[fluent-emoji-flat--alarm-clock]"></span>
<span class="icon-[carbon--edit-off]"></span>
Make sure prefix and icon name are separated with two hyphens: "--".
Why such a complex syntax? It is because of Tailwind CSS limitations. It can handle dynamic class names only if they are created in format "rule-[value]".
Usage
To add plugin to Tailwind CSS, you need to open tailwind.config.js, import addDynamicIconSelectors from @iconify/tailwind and add it to a list of plugins.
Basic usage
const { addDynamicIconSelectors } = require('@iconify/tailwind');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/*.html'],
plugins: [
// Iconify plugin
addDynamicIconSelectors(),
],
};
Color
To change icon color, change text color. See how monotone icons work in CSS.
Size
Advanced usage
Plugin accepts options to customise plugin behavior.
If you need to, you can create several instances of plugin with different options.
You must use a different value for prefix option for each plugin instance!
const { addDynamicIconSelectors } = require('@iconify/tailwind');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/*.html'],
plugins: [
// Iconify plugin
addDynamicIconSelectors({
// Prefix for selectors, must be different for each addDynamicIconSelectors()
prefix: 'icon',
// Removes redundant rules
overrideOnly: false,
// Icon height, 0 to disable size
scale: 1,
// Custom icon sets
iconSets: {},
// Callback to customise icons (such as change stroke-width, color, etc...).
// First param is content, second is icon name, third is icon set prefix.
// Function should return modified content.
customise: (content, name, prefix) => content,
}),
],
};
Options
Plugin options:
- prefix, string - prefix for dynamic class names.
- overrideOnly, boolean - if enabled, removes duplicate CSS.
- iconSets - icon sets as an object, it can be used for location of icon sets or custom icon sets.
- scale - scales icons. See below.
- customise - callback to customise icon. You can use it to change stroke width, color and so on.
Default values for all options are shown in code sample above.
prefix
Option prefix sets prefix for dynamic class names.
Default value is "icon".
For example, if you set it to "icon-hover", like in a code sample above, you can use icons as "icon-hover-[mdi-light--home]".
Value must not include "-" at the end. Class names will always have "-" added after prefix. That's how Tailwind CSS dynamic class names work.
You can use multiple instances of plugin with different prefix values to support different configuration options, like in the example below.
overrideOnly
If enabled, generated CSS will include only rules that override icons.
For example, with configuration in code example above, plugin will generate the following CSS for "icon-hover-[mdi-light--arrow-right]":
.icon-hover-\[mdi-light--arrow-right\] {
--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 12h12.25L11 6.75l.66-.75l6.5 6.5l-6.5 6.5l-.66-.75L16.25 13H4v-1Z'/%3E%3C/svg%3E");
}
This can be used in combination with default selectors to swap icon on hover without duplicating CSS:
/** @type {import('tailwindcss').Config} */
module.exports = {
plugins: [
// Plugin with dynamic selectors for '.icon-'
addDynamicIconSelectors(),
// Plugin with dynamic selectors that contains
// only css for overriding icon for '.icon-hover-'
addDynamicIconSelectors({
prefix: 'icon-hover',
overrideOnly: true,
}),
],
};
<span class="icon-[mdi--bell-outline] hover:icon-hover-[mdi--bell-off]"></span>
iconSets
With iconSets you can use custom files for icon sets.
See custom icon sets documentation.
scale
Customise option
Customise option can be used to customise icons.
You can change icon color, stroke width, animation duration and so on.
See customise option documentation for details and usage examples.
Issues
If everything is done correctly, icons should work.
Possible issues:
Errors when building CSS
If an icon set is missing or icon is missing, the plugin will throw errors.
See error message. If the plugin cannot find an icon set, install dependency. If the plugin cannot find icon, you are using the wrong icon name.
Selectors do not work
You have added class names, built your CSS, but icons do not work?
First, make sure the class name is correct. If it is correct, most likely Tailwind CSS is not seeing your class names. If you are familiar with Tailwind CSS, the process of fixing it is exactly the same as any other missing class name:
- You can check if your files are scanned.
- You can add it to safelist in config.
Multiple instances
You can add plugin to the plugin list in Tailwind CSS config multiple times, with different options.
Each addDynamicIconSelectors() entry in the plugin list should have different prefix option to avoid conflicts. The default value for prefix is "icon".