Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hicustomer
/
govsearch
like
2
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
govsearch
/
frontend
/
lib
/
utils.ts
Katsuya Oda
Initial commit
5285b72
unverified
12 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
166 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
import
{ twMerge }
from
"tailwind-merge"
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs))
}