Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Hanzo-Community
/
ecommerce
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ecommerce
/
lib
/
utils.ts
Hanzo Dev
Initial commit for ecommerce template
fc743bc
4 months 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))
}