You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
425 B
21 lines
425 B
import { InfoCircleOutlined } from '@ant-design/icons'; |
|
import { Tooltip } from 'antd'; |
|
import { FC } from 'react'; |
|
|
|
export type InfoTipProps = { |
|
tip: string | null; |
|
}; |
|
|
|
export const InfoTip: FC<InfoTipProps> = ({ tip }) => { |
|
if (tip === '' || tip === null) { |
|
return null; |
|
} |
|
|
|
return ( |
|
<span className="info-tip"> |
|
<Tooltip title={tip}> |
|
<InfoCircleOutlined /> |
|
</Tooltip> |
|
</span> |
|
); |
|
};
|
|
|