mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
b9a6b7b578
* demo: update demo * add form * clear * add Select * add * fix style * fix style * fix * revert
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import { Button, Tooltip } from 'antd';
|
|
import React from 'react';
|
|
|
|
const text = <span>prompt text</span>;
|
|
|
|
const buttonWidth = 70;
|
|
|
|
const App: React.FC = () => (
|
|
<div>
|
|
<div style={{ marginLeft: buttonWidth, whiteSpace: 'nowrap' }}>
|
|
<Tooltip placement="topLeft" title={text}>
|
|
<Button>TL</Button>
|
|
</Tooltip>
|
|
<Tooltip placement="top" title={text}>
|
|
<Button>Top</Button>
|
|
</Tooltip>
|
|
<Tooltip placement="topRight" title={text}>
|
|
<Button>TR</Button>
|
|
</Tooltip>
|
|
</div>
|
|
<div style={{ width: buttonWidth, float: 'left' }}>
|
|
<Tooltip placement="leftTop" title={text}>
|
|
<Button>LT</Button>
|
|
</Tooltip>
|
|
<Tooltip placement="left" title={text}>
|
|
<Button>Left</Button>
|
|
</Tooltip>
|
|
<Tooltip placement="leftBottom" title={text}>
|
|
<Button>LB</Button>
|
|
</Tooltip>
|
|
</div>
|
|
<div style={{ width: buttonWidth, marginLeft: buttonWidth * 4 + 24 }}>
|
|
<Tooltip placement="rightTop" title={text}>
|
|
<Button>RT</Button>
|
|
</Tooltip>
|
|
<Tooltip placement="right" title={text}>
|
|
<Button>Right</Button>
|
|
</Tooltip>
|
|
<Tooltip placement="rightBottom" title={text}>
|
|
<Button>RB</Button>
|
|
</Tooltip>
|
|
</div>
|
|
<div style={{ marginLeft: buttonWidth, clear: 'both', whiteSpace: 'nowrap' }}>
|
|
<Tooltip placement="bottomLeft" title={text}>
|
|
<Button>BL</Button>
|
|
</Tooltip>
|
|
<Tooltip placement="bottom" title={text}>
|
|
<Button>Bottom</Button>
|
|
</Tooltip>
|
|
<Tooltip placement="bottomRight" title={text}>
|
|
<Button>BR</Button>
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
export default App;
|