mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
4 lines
95 B
TypeScript
4 lines
95 B
TypeScript
export function twMerge(...classes: string[]) {
|
|
return classes.filter(Boolean).join(" ");
|
|
}
|