Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Ditzzy/api
aripbae
/
yuki-api
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
yuki-api
/
src
/
lib
/
utils.ts
OhMyDitzzy
Feat: add project
6d9f36a
30 days ago
raw
Copy download link
history
blame
contribute
delete
169 Bytes
import
{ clsx,
type
ClassValue
}
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}