Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
huggingface
/
inference-playground
like
302
Running
on
CPU Upgrade
App
Files
Files
Community
13
Fetching metadata from the HF Docker repository...
refs/pr/13
inference-playground
/
src
/
lib
/
utils
/
styles.ts
Thomas G. Lopes
MCPs (#91)
52c6f5c
unverified
10 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
173 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
classes
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}