All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.utils.getMainAxisFromPlacement.js.flow Maven / Gradle / Ivy

There is a newer version: 2.11.8
Show newest version
// @flow
import type { Placement } from '../enums';

export default function getMainAxisFromPlacement(
  placement: Placement
): 'x' | 'y' {
  return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy