Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SmartRetrieval
/
Smart-Retrieval-Demo-API
like
1
Build error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
719d697
Smart-Retrieval-Demo-API
/
frontend
/
app
/
components
/
ui
/
lib
/
utils.ts
khronoz
Initial Commit
0702eb8
over 1 year 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));
}