llama-stack-mirror/llama_stack/ui/lib/utils.tsx
Eric Huang ecd8f2113a chat completion, testing
# What does this PR do?


## Test Plan
# What does this PR do?


## Test Plan
2025-05-22 21:44:15 -07:00

6 lines
169 B
TypeScript

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