Returns a trimmed string of the combined class names. Class names can be either strings or arrays of strings.
Example:
combineClassNames(`my-class`, `my-other-class`, [`first`, `second`])
// `myclass my-other-class first second`
Arrays can be nested.
classNames :: Array|StringAny number of arguments of class names.
(String) The combined class names.