Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AZILS
/
app
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
app
/
src
/
utils
/
cn.ts
AZILS
Upload 323 files
a21c316
verified
13 days ago
raw
Copy download link
history
blame
contribute
delete
171 Bytes
import
{
type
ClassValue
, clsx }
from
'clsx'
;
import
{ twMerge }
from
'tailwind-merge'
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}