mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-18 14:44:21 +01:00
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
import { clsx, type ClassValue } from 'clsx';
|
|
import { twMerge } from 'tailwind-merge';
|
|
|
|
export function cn(...inputs: ClassValue[]): string {
|
|
return twMerge(clsx(inputs));
|
|
}
|