Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
host1syan
/
goofish
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
goofish
/
web-ui
/
src
/
lib
/
utils.ts
host1syan
Upload 212 files
5378afe
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
166 Bytes
import
{
type
ClassValue
, clsx }
from
'clsx'
import
{ twMerge }
from
'tailwind-merge'
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}