Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
blfm/RAI
deepak191z
/
RAI
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
229b3b8
RAI
/
src
/
lib
/
utils.ts
deepak191z
Upload 84 files
229b3b8
verified
7 months ago
raw
Copy download link
history
blame
Safe
166 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}