Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
jbilcke-hf
/
ai-tube
like
279
Running
on
CPU Upgrade
App
Files
Files
Community
9
f62b8d3
ai-tube
/
src
/
lib
/
utils.ts
jbilcke-hf
HF staff
🍿
1f122c3
12 months ago
raw
Copy download link
history
blame
Safe
167 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}