Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
enzostvs
/
deepsite
like
7.78k
Running
App
Files
Files
Community
166
Fetching metadata from the HF Docker repository...
main
deepsite
/
src
/
lib
/
utils.ts
enzostvs
HF Staff
DeepSite v2 🐳
f6f8d55
9 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
166 Bytes
import
{ clsx,
type
ClassValue
}
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}