All files / app/payment/hostedCreditCard HostedCreditCardNumberField.tsx

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 3931x   31x 31x 31x               31x 25x 25x 25x   25x                   25x                   31x  
import React, { useCallback, FunctionComponent } from 'react';
 
import { TranslatedString } from '../../locale';
import { FormField, TextInputIframeContainer } from '../../ui/form';
import { IconLock } from '../../ui/icon';
 
export interface HostedCreditCardNumberFieldProps {
    appearFocused: boolean;
    id: string;
    name: string;
}
 
const HostedCreditCardNumberField: FunctionComponent<HostedCreditCardNumberFieldProps> = ({
    appearFocused,
    id,
    name,
}) => {
    const renderInput = useCallback(() => (<>
        <TextInputIframeContainer
            additionalClassName="has-icon"
            appearFocused={ appearFocused }
            id={ id }
        />
 
        <IconLock />
    </>), [id, appearFocused]);
 
    return (
        <FormField
            additionalClassName="form-field--ccNumber"
            input={ renderInput }
            labelContent={ <TranslatedString id="payment.credit_card_number_label" /> }
            name={ name }
        />
    );
};
 
export default HostedCreditCardNumberField;