utils.ts 212 B

123456
  1. // Copyright (c) Jupyter Development Team.
  2. // Distributed under the terms of the Modified BSD License.
  3. export function combineClassNames(...classNames: (string | undefined)[]) {
  4. return classNames.join(' ');
  5. }