import React from 'react'; import mpBlackLogo from '../assets/img/masterpass-black-logo.png'; import type { MasterpassRestOptionTexts } from '../types/custom-render.types'; interface MasterpassSecurityInfoProps { texts: MasterpassRestOptionTexts; } const MasterpassSecurityInfo: React.FC = ({ texts }) => { return (
Masterpass

{texts.masterpassSecurityPrefix}{' '} {texts.masterpassSecurityLink} {texts.masterpassSecuritySuffix}

); }; export default MasterpassSecurityInfo;