llama-stack-mirror/llama_stack/ui/lib/utils.ts
Eric Huang 48763f21fd shadcn
# What does this PR do?


## Test Plan
2025-05-14 16:57:51 -07:00

6 lines
166 B
TypeScript

import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}