Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kaadan
/
subul
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
subul
/
frontend
/
app
/
lib
/
utils.ts
AshameTheDestroyer
Project Split.
a85513d
14 days 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))
}