mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-05-21 23:48:36 +02:00
8 lines
207 B
TypeScript
8 lines
207 B
TypeScript
import type { ClassValue } from "clsx"
|
|
import { clsx } from "clsx"
|
|
import { twMerge } from "tailwind-merge"
|
|
|
|
export const classNames = (...inputs: ClassValue[]): string => {
|
|
return twMerge(clsx(inputs))
|
|
}
|