UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

1 lines 567 B
define([], function() { return "import * as React from 'react';\nimport { Tooltip } from './Tooltip';\nimport { ICalloutProps } from '../../index';\n\n/**\n * Tooltip component props.\n */\n\nexport interface ITooltipProps extends React.Props<Tooltip> {\n /**\n * Properties to pass through for Callout, reference detail properties in ICalloutProps\n */\n calloutProps?: ICalloutProps;\n\n /**\n * String to be passed to the tooltip\n */\n content?: string;\n\n /**\n * Element to anchor the Tooltip to.\n */\n targetElement?: HTMLElement;\n}"; });