Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
TeichAI/Qwen3-4B-Thinking-2507-Claude-4.5-Opus
DarkMindForever
/
sempero
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
sempero
/
src
/
lib
/
utils.ts
armand0e
gradio -> docker
250bf31
2 months 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));
}