Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DeeCeeXxx
/
mywork
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
mywork
/
src
/
lib
/
utils.ts
DeeCeeXxx
Upload 114 files
e9d5b7d
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
166 Bytes
import
{ clsx,
type
ClassValue
}
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}