import React from 'react'; import MyTooltip from '.'; import { IconProps } from '@chakra-ui/icons'; import MyIcon from '../Icon'; type Props = IconProps & { label?: string | React.ReactNode; }; const QuestionTip = ({ label, maxW, ...props }: Props) => { return ( ); }; export default React.memo(QuestionTip);