import React, { FC } from 'react'; import styled from '@emotion/styled'; import { Text } from '@yandex-lego/components/Text/bundle'; import { SmileIcon } from './SmileIcon'; export const Thanks: FC = () => { return ( Благодарим за отзыв! ); }; const Container = styled.div` display: flex; align-items: center; .Text { margin-right: 16px; } `;