mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-29 03:13:19 -05:00
ced7b2aa2c
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
4 lines
105 B
TypeScript
4 lines
105 B
TypeScript
export function classNames(...classes: string[]): string {
|
|
return classes.filter(Boolean).join(" ");
|
|
}
|