export const getOffsetNode = (
  offsetValue: string | number | undefined,
  disabled: boolean,
): AxisAddition["args"]["axis_operand"] | undefined => {
  if (isUndefined(offsetValue) || disabled) { return; }