UNPKG

react-native-unit-components

Version:

Unit React Native components

18 lines 691 B
import { LISTENERS } from '../../scripts/html/bodyScript'; export const getWirePaymentParams = props => { const accountIdParam = props.accountId ? `account-id="${props.accountId}"` : ''; return ` ${accountIdParam} is-auto-focus="${props.isAutoFocus || false}" initial-stage-back-button="${props.initialStageBackButton ?? false}" final-stage-done-button="${props.finalStageDoneButton ?? false}" `; }; export const getWirePaymentScript = () => { return ` ${LISTENERS.unitPaymentCreated} ${LISTENERS.unitPaymentInitialStageBackButtonClicked} ${LISTENERS.unitPaymentFinalStageDoneButtonClicked} `; }; //# sourceMappingURL=UNWirePaymentComponent.utils.js.map