mirror of
https://github.com/quartz-community/explorer.git
synced 2026-07-22 02:50:24 +00:00
5 lines
138 B
TypeScript
5 lines
138 B
TypeScript
export function classNames(
|
|
...classes: (string | undefined | null | false)[]
|
|
): string {
|
|
return classes.filter(Boolean).join(" ");
|
|
}
|