UNPKG

@atlaskit/tokens

Version:

Design tokens are the single source of truth to name and store design decisions.

9 lines 135 B
export function clampComponent(value) { if (value < 0) { return 0; } if (value > 255) { return 255; } return value; }