import { Box, Stack, Text, useColorModeValue as mode } from '@chakra-ui/react' import * as React from 'react' export const Feature = (props) => { const { title, children, icon } = props return ( {icon} {title} {children} ) }