Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
florinbobis
/
atom-landing
like
0
Running
App
Files
Files
Community
ac4aa3f
atom-landing
/
src
/
lib
/
utils.ts
Florin Bobiș
shadcn init
028e2f6
4 months ago
raw
Copy download link
history
blame
Safe
166 Bytes
import
{ clsx,
type
ClassValue
}
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}