Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
inference-playground
like
138
Running
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
2d80f1b
inference-playground
/
src
/
lib
/
utils
/
cn.ts
Thomas G. Lopes
add select to compare page
ba9894c
30 days ago
raw
Copy download link
history
blame
Safe
168 Bytes
import
{ clsx,
type
ClassValue
}
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}