Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ppaihack
/
PoCInnovation
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9a9d08c
PoCInnovation
/
front
/
src
/
lib
/
utils.ts
pierrelissope
feat: added front core
9a9d08c
7 months ago
raw
Copy download link
history
blame
Safe
Wrap lines
166 Bytes
import
{ clsx,
type
ClassValue
}
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}