Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NeoPy
/
ui-stater
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ui-stater
/
lib
/
utils.ts
NeoPy
Upload folder using huggingface_hub
1ae64c5
verified
23 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));
}