import React from "react"; interface ProviderFooterProps { providerData: { name: string; logo_url: string; regulations_url: string; gdpr_url: string; }; messages: { provider: { by_paying_i_accept_the: string; terms_and_conditions: string; and: string; privacy_policy: string; of: string; }; }; } export const ProviderFooter: React.FC = ({ providerData, messages, }) => { return (
{messages.provider.by_paying_i_accept_the} {messages.provider.terms_and_conditions} {messages.provider.and} {messages.provider.privacy_policy} {messages.provider.of && `${messages.provider.of} `} {providerData.name}
); };