import React, { FC } from 'react'; import Button from '../../blocks/Button'; import css from './index.module.css'; import IconRatingClosedSVG from '../../assets/icons/icon-rating-closed.svg'; import IconAngleLeftSVG from '../../assets/icons/icon-angle-left.svg'; export interface CustomerRatingClosedProps { translations?: { contentTitle?: string; contentText1?: string; contentText2?: string; contentText3?: string; homeButton?: string; backToOverviewButton?: string; }; handleClick?: () => void; isCustomerLogin?: boolean; } const CustomerRatingClosed: FC = ({ translations, handleClick, isCustomerLogin = false, }) => { return ( <>

{' '} {translations.contentTitle}{' '}

{translations.contentText1}
{translations.contentText2}
{translations.contentText3 + ' '} info@mila.com
{isCustomerLogin ? (
) : (
)}
); }; export default CustomerRatingClosed;