import React, { FC } from 'react'; import { useTranslation } from 'react-i18next'; import { Heading, HStack, List, Text, VStack } from '@chakra-ui/react'; import { CtaButton, PageSection } from '../'; import { ListItem } from './ListItem'; import { BenefitsSectionProps } from './types'; import { iconsMap } from './helper'; export const BenefitsSection: FC = ({ data: { heading, description, list }, }) => { const { t } = useTranslation('~', { keyPrefix: 'dry-wash.landing' }); return ( {t(heading)} {t(description)} {list.map((itemKey, i) => ( {t(itemKey)} ))} ); };