2025-03-14 Web Development
Styling Custom Components With The cn Utility
By O. Wolfson
When building React components with Tailwind CSS, you often need to:
- Merge multiple class names dynamically.
- Allow users to override default styles.
- Apply styles conditionally based on props.
Manually handling these cases can be messy. Thatβs where cn
comes in.
π What is cn
?
cn
is a helper function that:
- Merges multiple class names into a single string.
- Removes redundant or conflicting Tailwind classes so that only the intended styles apply.
- Allows incoming
className
props to override defaults, giving users full control over styles. - Supports conditional classes, making styling more flexible.
Though cn
is commonly used in shadcn/ui, it's a general-purpose utility that you can use in any React + Tailwind project.
πΉ How cn
Works Internally
A typical cn
function is implemented like this:
How It Works:
clsx(inputs)
: Combines and filters outfalse
,null
, orundefined
values.twMerge(...)
: Ensures conflicting Tailwind classes are resolved, with later ones taking priority.
Now, letβs see why this is useful.
π― Problem: Styling a Custom Component Without cn
Imagine a Button
component:
π΄ Issue:
- If someone uses
<Button className="bg-red-500" />
, the button will have bothbg-blue-500
andbg-red-500
, potentially causing conflicts. - Tailwind does not automatically resolve these conflicts.
β
Solution: Using cn
to Fix It
Now, if someone does:
The final result will be:
- β
bg-red-500
replacesbg-blue-500
- β
p-2
replacesp-4
- β The component remains fully customizable and conflict-free
πΉ Extending Styling with Component Props
We can take this further by using props to conditionally apply styles.
π― Example: A Card
Component with Conditional Styling
Usage:
Final Output:
- β
bg-yellow-200
added due toisHighlighted
- β
shadow-lg
added due tohasShadow
- β
border-red-500
replacesborder
This approach makes components more reusable and customizable without losing control over default styles.
π― When to Use cn
Use cn
whenever:
β You need to merge Tailwind classes dynamically.
β You want to allow className
overrides safely.
β You need to conditionally apply styles based on props.
β You want to prevent class conflicts in reusable components.
πΉ Final Thoughts
cn
isn't just for shadcn/uiβitβs useful for any React + Tailwind project.- It helps you write cleaner, conflict-free components with customizable styles.
- Combining it with props for dynamic styles makes components even more powerful.
By mastering cn
, you'll improve your workflow and make your React components more flexible and maintainable.