Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
T1ckbase
/
bolt.diy
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b0fe1fc
bolt.diy
/
app
/
lib
/
utils.ts
Stijnus
UI Enhancements
027f652
8 months ago
raw
Copy download link
history
blame
169 Bytes
import
{
type
ClassValue
, clsx }
from
'clsx'
;
import
{ twMerge }
from
'tailwind-merge'
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}