Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hamza82
/
docker
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
26b1ba0
docker
/
frontend
/
src
/
lib
/
utils.ts
hamza82
make this code runable and solve error
1201570
11 months ago
raw
Copy download link
history
blame
Safe
173 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}