1
0
mirror of https://github.com/theoludwig/theoludwig.git synced 2026-06-03 07:18:36 +02:00
Files
.profile/configs/config-tailwind/classNames.ts
T

8 lines
231 B
TypeScript

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