import { InfoOutlineIcon } from '@chakra-ui/icons' import { Box, Tooltip } from '@chakra-ui/react' import React from 'react' export interface InfoTooltipProps { infoText?: string | boolean } export const InfoTooltip = (props: InfoTooltipProps) => { const { infoText } = props return ( ) }