FastGPT/packages/web/components/common/MyTooltip/QuestionTip.tsx
Archer b20d075d35
Some checks failed
Deploy image by kubeconfig / build-fastgpt-docs-images (push) Has been cancelled
Deploy image to vercel / deploy-production (push) Has been cancelled
Build FastGPT images in Personal warehouse / build-fastgpt-images (push) Has been cancelled
Deploy image by kubeconfig / update-docs-image (push) Has been cancelled
Updae theme and fix some bug (#1711)
2024-06-07 12:54:30 +08:00

18 lines
410 B
TypeScript

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