UNPKG

@threlte/theatre

Version:

Threlte Components for Theatre, an animation library with a professional motion design toolset

11 lines (10 loc) 296 B
export const parsePropLabel = (alphaNumericKey, propValue) => { let label = alphaNumericKey; if (typeof propValue === 'string') { label = propValue; } else if (typeof propValue === 'object') { label = propValue.label || alphaNumericKey; } return label; };