@clarabridge/unified-react-components
Version:
Collection of Engage reusable components
14 lines (13 loc) • 473 B
TypeScript
import './inline-help.pcss';
import React, { ReactElement } from 'react';
import { TippyProps } from '@tippyjs/react';
export type Props = {
title?: string | ReactElement;
content: string | ReactElement;
className?: string;
appendTo?: TippyProps['appendTo'];
placement?: TippyProps['placement'];
visible?: boolean;
};
declare const InlineHelp: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>;
export default InlineHelp;