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) 168 B
// @ts-nocheck /** * @param len */ export default function getAltLen(len: 'width' | 'height'): 'width' | 'height' { return len === 'width' ? 'height' : 'width'; }