mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
700 B
700 B
order | title | ||||
---|---|---|---|---|---|
2 |
|
zh-CN
设置了 arrowPointAtCenter
后,箭头将指向目标元素的中心。
en-US
By specifying arrowPointAtCenter
prop, the arrow will point to the center of the target element.
import { Button, Tooltip } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
<Tooltip placement="topLeft" title="Prompt Text">
<Button>Align edge / 边缘对齐</Button>
</Tooltip>
<Tooltip placement="topLeft" title="Prompt Text" arrowPointAtCenter>
<Button>Arrow points to center / 箭头指向中心</Button>
</Tooltip>
</>
);
export default App;