Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
leptonai
/
tryemoji
like
50
Running
App
Files
Files
Community
main
tryemoji
/
src
/
components
/
ui
/
utils.ts
yadongxie
feat: add web
89682f8
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
169 Bytes
import
{
type
ClassValue
, clsx }
from
"clsx"
;
import
{ twMerge }
from
"tailwind-merge"
;
export
function
cn
(
...inputs: ClassValue[]
) {
return
twMerge
(
clsx
(inputs));
}