export function cx(...classNames: Array<string | number | boolean | undefined | null>) {
  return classNames.filter(Boolean).join(" ");
}
