Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
enzostvs
/
deepsite
like
16.1k
Running
App
Files
Files
Community
543
Fetching metadata from the HF Docker repository...
refs/pr/527
deepsite
/
cn.ts
AchyuthKolli
Upload 49 files
b074e91
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
169 Bytes
import
{ clsx,
type
ClassValue
}
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}