UNPKG
logsdx
Version:
latest (0.1.2)
0.1.2
0.1.1
0.1.0
log streaming with dx on the ðŸ§
logsdx
/
src
/
clients
/
react
/
lib
/
utils.ts
7 lines
(5 loc)
•
169 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
{ type
ClassValue
, clsx }
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs)); }