1
0
mirror of https://github.com/DocNR/POWR.git synced 2025-05-15 02:35:51 +00:00

7 lines
169 B
TypeScript

import { clsx, type ClassValue } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}