ant-design/components/tooltip/demo/arrow-point-at-center.md
Marius Ileana 39a11f00a0 docs: upload, alert, tooltip - translations of remaining demos (#3035)
* upload - translations of two remaining demos

* alert & tooltip - remaining demo translations

* Prompt typo
2016-09-14 09:52:14 +08:00

738 B

order title
2
zh-CN en-US
箭头指向 Arrow pointing at the center

zh-CN

设置了 arrowPointAtCenter 后,箭头将指向目标元素的中心。

en-US

By specifying arrowPointAtCenter prop, the arrow will point to the center of the target element.

import { Tooltip, Button } from 'antd';

ReactDOM.render(
  <div>
    <Tooltip placement="topLeft" title="Prompt Text">
      <Button>Tooltip default pointing alignment</Button>
    </Tooltip>
    <Tooltip placement="topLeft" title="Prompt Text" arrowPointAtCenter>
      <Button>Tooltip central alignment</Button>
    </Tooltip>
  </div>
, mountNode);