Files
FastGPT/packages/web/components/common/MyTooltip/QuestionTip.tsx
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;