Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
retopara
/
ragflow
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c7d644d
ragflow
/
web
/
src
/
lib
/
utils.ts
balibabu
feat: Add next login page with shadcn/ui #3221 (#3231)
bf32bcf
4 months 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));
}