UNPKG

@patternfly/react-core

Version:

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

10 lines (8 loc) 227 B
// @ts-nocheck import { Variation, Placement } from '../enums'; /** * @param placement */ export default function getVariation(placement: Placement): Variation | null | undefined { return placement.split('-')[1] as any; }