File size: 156 Bytes
9705b6c
 
 
 
 
 
1
2
3
4
5
6
7
import { twMerge } from 'tailwind-merge';
import { clsx } from 'clsx';

export default function cn(...inputs: string[]) {
  return twMerge(clsx(inputs));
}