import { IGenericButton } from '../../../../generic/types';
import { IRWCOption } from '../../../types';

export const transformButton = ({ props }: IGenericButton): IRWCOption => {
  const result: IRWCOption = {
    label: props.label || props.value,
    value: props.value || props.label
  };
  return result;
};