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 | 52x 52x 52x 52x 52x 52x | import React, { FunctionComponent } from 'react';
import { TranslatedString } from '../../locale';
import { IconCardCodeAmex, IconCardCodeVisa, IconSize } from '../../ui/icon';
import './CreditCardCodeTooltip.scss';
const CreditCardCodeTooltip: FunctionComponent = () => (
<div className="dropdown-menu dropdown-menu--content dropdown-menu--card-code">
<div className="form-ccFields-cvvExample">
<div className="form-ccFields-cvvExampleDescription">
<p>
<TranslatedString id="payment.credit_card_cvv_help_text" />
</p>
</div>
<div className="form-ccFields-cvvExampleFigures">
<figure>
<IconCardCodeVisa size={ IconSize.Large } />
</figure>
<figure>
<IconCardCodeAmex size={ IconSize.Large } />
</figure>
</div>
</div>
</div>
);
export default CreditCardCodeTooltip;
|