mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
7 lines
185 B
TypeScript
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))
|
||
|
}
|