@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
7 lines • 333 B
JavaScript
import { POSITIONS } from '../../../types/positions/positions';
export const getTextOrIcon = (position, inputValues, offText, onText) => position === POSITIONS.CENTER
? inputValues?.centerInputValue
: position === POSITIONS.RIGHT
? onText?.content
: offText?.content;
//# sourceMappingURL=getTextOrIcon.js.map