Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mistral-AI-Game-Jam
/
description-improv
like
248
Running
App
Files
Files
Community
7
Fetching metadata from the HF Docker repository...
refs/pr/5
description-improv
/
src
/
lib
/
utils.ts
Felix Zieger
game init
55a034a
16 days ago
raw
Copy download link
history
blame
Safe
166 Bytes
import
{ clsx,
type
ClassValue
}
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}