UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

11 lines 409 B
import { POSITIONS } from '../../../types/positions/positions'; export const getValueOfRadioButton = (position, inputValues) => { if (position === POSITIONS.RIGHT) { return inputValues?.rightInputValue; } else if (position === POSITIONS.LEFT) { return inputValues?.leftInputValue; } return inputValues?.centerInputValue; }; //# sourceMappingURL=getValueOfRadioButton.js.map