import React, { FC } from 'react'; import Button from '../../blocks/Button'; import css from './index.module.css'; import IconCheckRedSVG from '../../assets/icons/icon-check-red.svg'; import IconAngleLeftSVG from '../../assets/icons/icon-angle-left.svg'; export interface RatingThankYouPageProps { translations?: { thanksText?: string; homeButton?: string; backToOverviewButton?: string; }; handleClick?: () => void; isCustomerLogin?: boolean; } const RatingThankYouPage: FC = ({ translations, handleClick, isCustomerLogin = false, }) => { return ( <>

{' '} {translations.thanksText}{' '}

{!isCustomerLogin && (
)} {isCustomerLogin && (
)}
); }; export default RatingThankYouPage;