UNPKG

react-native-unit-components

Version:

Unit React Native components

15 lines (12 loc) 566 B
import { UNCreateCardComponentProps } from "./UNCreateCardComponent"; export const getCreateCardParams = (props: UNCreateCardComponentProps) => { const cardTypesParam = props.cardTypes ? `card-types="${props.cardTypes.join()}"` : ''; const physicalFeeParam = props.physicalCardFee ? `physical-card-fee="${props.physicalCardFee}"` : ''; const virtualFeeParam = props.virtualCardFee ? `virtual-card-fee="${props.virtualCardFee}"` : ''; return ` account-id="${props.accountId}" ${cardTypesParam} ${physicalFeeParam} ${virtualFeeParam} `; };