mirror of
https://github.com/VSCodium/icons.git
synced 2025-12-10 03:53:52 -06:00
7 lines
161 B
TypeScript
7 lines
161 B
TypeScript
import { ClassValue, clsx } from "clsx"
|
|
import { twMerge } from "tailwind-merge"
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|