office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
21 lines (20 loc) • 527 B
TypeScript
import * as React from 'react';
import { Tooltip } from './Tooltip';
import { ICalloutProps } from '../../index';
/**
* Tooltip component props.
*/
export interface ITooltipProps extends React.Props<Tooltip> {
/**
* Properties to pass through for Callout, reference detail properties in ICalloutProps
*/
calloutProps?: ICalloutProps;
/**
* String to be passed to the tooltip
*/
content?: string;
/**
* Element to anchor the Tooltip to.
*/
targetElement?: HTMLElement;
}