import { IGenericButton } from "../../../../generic/types";

export const transformButton = ( { props }: IGenericButton ) => ({
    label: props.label,
    value: props.value,
    buttonStyle: props.rwc?.buttonStyle,
});