| import React from 'react'; | |
| import { Button, ConfigProvider, Flex, Popover } from 'antd'; | |
| const text = <span>Title</span>; | |
| const content = ( | |
| <div> | |
| <p>Content</p> | |
| <p>Content</p> | |
| </div> | |
| ); | |
| const buttonWidth = 80; | |
| const App: React.FC = () => ( | |
| <ConfigProvider button={{ style: { width: buttonWidth, margin: 4 } }}> | |
| <Flex vertical justify="center" align="center" className="demo"> | |
| <Flex justify="center" align="center" style={{ whiteSpace: 'nowrap' }}> | |
| <Popover placement="topLeft" title={text} content={content}> | |
| <Button>TL</Button> | |
| </Popover> | |
| <Popover placement="top" title={text} content={content}> | |
| <Button>Top</Button> | |
| </Popover> | |
| <Popover placement="topRight" title={text} content={content}> | |
| <Button>TR</Button> | |
| </Popover> | |
| </Flex> | |
| <Flex style={{ width: buttonWidth * 5 + 32 }} justify="space-between" align="center"> | |
| <Flex align="center" vertical> | |
| <Popover placement="leftTop" title={text} content={content}> | |
| <Button>LT</Button> | |
| </Popover> | |
| <Popover placement="left" title={text} content={content}> | |
| <Button>Left</Button> | |
| </Popover> | |
| <Popover placement="leftBottom" title={text} content={content}> | |
| <Button>LB</Button> | |
| </Popover> | |
| </Flex> | |
| <Flex align="center" vertical> | |
| <Popover placement="rightTop" title={text} content={content}> | |
| <Button>RT</Button> | |
| </Popover> | |
| <Popover placement="right" title={text} content={content}> | |
| <Button>Right</Button> | |
| </Popover> | |
| <Popover placement="rightBottom" title={text} content={content}> | |
| <Button>RB</Button> | |
| </Popover> | |
| </Flex> | |
| </Flex> | |
| <Flex justify="center" align="center" style={{ whiteSpace: 'nowrap' }}> | |
| <Popover placement="bottomLeft" title={text} content={content}> | |
| <Button>BL</Button> | |
| </Popover> | |
| <Popover placement="bottom" title={text} content={content}> | |
| <Button>Bottom</Button> | |
| </Popover> | |
| <Popover placement="bottomRight" title={text} content={content}> | |
| <Button>BR</Button> | |
| </Popover> | |
| </Flex> | |
| </Flex> | |
| </ConfigProvider> | |
| ); | |
| export default App; | |