Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Aynkhn
/
SOURCE.IO
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
SOURCE.IO
/
src
/
lib
/
utils.ts
Adeen
Deploy: OCR support for PDF/Images/DOCX
ae14296
12 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
169 Bytes
import
{ clsx,
type
ClassValue
}
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}