Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Ramakrushna
/
summryai
like
0
Model card
Files
Files and versions
Community
1
e79a00d
summryai
/
utils
/
functions
/
cn.ts
Ramakrushna
updated
6076169
verified
19 days ago
raw
Copy download link
history
blame
168 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}