mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 02:10:12 -06:00
4 lines
105 B
TypeScript
4 lines
105 B
TypeScript
export function classNames(...classes: string[]): string {
|
|
return classes.filter(Boolean).join(" ");
|
|
}
|