Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
NERDDISCO/LeRobot.js
ethiotech4848
/
LeRobot.js
like
0
Running
App
Files
Files
Community
efe2c71
LeRobot.js
/
src
/
demo
/
lib
/
utils.ts
NERDDISCO
feat: added react / tailwind ui
0d9f1af
2 months ago
raw
Copy download link
history
blame
Safe
169 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}