import { Flex, VStack } from '@chakra-ui/layout' import { IconProps, Text } from '@chakra-ui/react' import React from 'react' type FeatureCardProps = { Icon: (props: IconProps) => JSX.Element title: string content: string } export const FeatureCard = ({ Icon, title, content }: FeatureCardProps) => { return ( {title} {content} ) }