Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
0xarchit
/
CityTrack
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
CityTrack
/
Frontend
/
lib
/
utils.ts
DeeptiYadav10648
Frontend version 1 complete
bcd59c6
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
169 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}