Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Bromeo777
/
RM
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
RM
/
src
/
cn.ts
Bromeo777
Add cn.ts file to fix @/cn import error
d05cde0
verified
30 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
166 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}