Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
scdrand23
/
ai-conference-deadlines
like
5
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fd35ca5
ai-conference-deadlines
/
src
/
lib
/
utils.ts
dere-cbai
Clean deployment with countdown functionality
6d65f0c
28 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))
}