Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ditzzy
/
api
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
api
/
src
/
lib
/
utils.ts
OhMyDitzzy
Feat: add project
6d9f36a
23 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));
}