export function cx(...args: unknown[]) { return args .flat() .filter((x) => typeof x === "string") .join(" ") .trim(); }