Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
oceddyyy
/
UnivAI
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
UnivAI
/
src
/
components
/
ui
/
utils.ts
oceddyyy
Upload 70 files
a381c35
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
175 Bytes
import
{ clsx,
type
ClassValue
}
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}