UNPKG

@ant-design/pro-utils

Version:
16 lines (15 loc) 411 B
import type { LabelTooltipType } from 'antd/lib/form/FormItemLabel'; import React from 'react'; /** * 在 form 的 label 后面增加一个 tips 来展示一些说明文案 * * @param props */ export declare const LabelIconTip: React.FC<{ label: React.ReactNode; subTitle?: React.ReactNode; tooltip?: string | LabelTooltipType; ellipsis?: boolean | { showTitle?: boolean; }; }>;