UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

9 lines (7 loc) 141 B
// @ts-nocheck /** * @param axis */ export default function getAltAxis(axis: 'x' | 'y'): 'x' | 'y' { return axis === 'x' ? 'y' : 'x'; }