cn
Utilities for combining classNames with or without custom tailwind configurations to manage style conflicts.
Installation
Install the following dependencies:
terminal
npm install clsx tailwind-merge@^2
Create a utils/cn.ts
file and paste the following code into it.
/utils/cn.ts
IntelliSense setup (optional)
If you are using VSCode and the TailwindCSS IntelliSense Extension, you have to add the following to your .vscode/settings.json
file to enable Intellisense features for cn
and tv
functions.
.vscode/settings.json
Prettier setup (optional)
If you're using prettier-plugin-tailwindcss
, you can include cn
in the functions list to ensure it gets sorted as well.
prettier.config.mjs
Examples
cn
In this example, cn
is used to merge Tailwind classes and conditionally apply styles based on the isActive
prop while managing potential class conflicts.
/examples/cn-ext.ts
© 2024 AlignUI Design System. All rights reserved.