Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
inference-playground
like
214
Running
on
CPU Upgrade
App
Files
Files
Community
11
Fetching metadata from the HF Docker repository...
af1f386
inference-playground
/
src
/
lib
/
utils
/
styles.ts
Thomas G. Lopes
MCPs (#91)
52c6f5c
unverified
11 days ago
raw
Copy download link
history
blame
Safe
173 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
classes
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}