Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
anuragsingh922
/
VocRT
like
4
ONNX
Model card
Files
Files and versions
xet
Community
main
VocRT
/
frontend
/
src
/
lib
/
utils.ts
Anurag
version-2 initial version
5306da4
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
166 Bytes
import
{ clsx,
type
ClassValue
}
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}