import { Box, HStack, Image, VStack, Text } from "@chakra-ui/react"; type Props = { icon: string; title: string; description: string; }; export const Step = ({ icon, title, description }: Props) => { return ( {title} {description} ); };