Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Husr
/
clip
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
clip
/
apps
/
frontend
/
src
/
lib
/
utils.ts
Husr
first commit
d988ae4
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
169 Bytes
import
{
ClassValue
, clsx }
from
'clsx'
;
import
{ twMerge }
from
'tailwind-merge'
;
export
function
cn
(
...classes: ClassValue[]
) {
return
twMerge
(
clsx
(...classes));
}