This repository has been archived on 2026-09-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2026-08-27 20:13:42 +08:00
|
|
|
import { clsx, type ClassValue } from 'clsx'
|
|
|
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
|
|
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
|
|
|
return twMerge(clsx(inputs))
|
|
|
|
|
}
|