import { Box, Flex, HStack, Stack, Text } from '@chakra-ui/react' import * as React from 'react' import Image from 'next/image' import { QuoteLeftIcon } from 'assets/icons/QuoteLeftIcon' interface TestimonialProps { image: StaticImageData name: string role: string children: React.ReactNode } export const Testimonial = (props: TestimonialProps) => { const { image, name, role, children } = props return ( {children} {name} {name} {role} ) }