mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-15 03:41:36 +00:00
Add initial dashboard page and metric cards for Acme branding. #VERCEL_SKIP Co-authored-by: null <162737925+zebulonhermann@users.noreply.github.com>
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { clsx, type ClassValue } from 'clsx'
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|