Created
September 2, 2025 13:56
-
-
Save kazi331/9a9d9a15fdc305a853c89a64cdd1f75a to your computer and use it in GitHub Desktop.
most used cn function file in tailwindcss projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { clsx, type ClassValue } from 'clsx' | |
| import { twMerge } from 'tailwind-merge' | |
| export function cn(...inputs: ClassValue[]) { | |
| return twMerge(clsx(inputs)) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment