Sign in
apache
/
casbin-editor
/
HEAD
/
.
/
app
/
utils
/
lib
/
utils.ts
blob: 2819a830d242f11fda91c4e8951794ab815cec77 [
file
]
import
{
clsx
,
type
ClassValue
}
from
'clsx'
;
import
{
twMerge
}
from
'tailwind-merge'
;
export
function
cn
(...
inputs
:
ClassValue
[])
{
return
twMerge
(
clsx
(
inputs
));
}