1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-07 19:55:34 +02:00

7 lines
185 B
TypeScript

import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export const classNames = (...inputs: ClassValue[]): string => {
return twMerge(clsx(inputs))
}