Sign in
◑
Theme
apache
/
maka
/
refs/heads/codex/cli-graph
/
.
/
packages
/
ui
/
src
/
utils.ts
blob: a7c26636a0b512c1ef2b43c3070e507936df0c73 [
file
]
import
{
clsx
,
type
ClassValue
}
from
'clsx'
;
import
{
twMerge
}
from
'tailwind-merge'
;
export
function
cn
(...
inputs
:
ClassValue
[]):
string
{
return
twMerge
(
clsx
(
inputs
));
}