--- order: 2 title: zh-CN: 箭头 en-US: Arrow --- ## zh-CN 可以展示一个箭头。 ## en-US You could display an arrow. ```jsx import { Menu, Dropdown, Button } from 'antd'; const menu = ( 1st menu item ), }, { label: ( 2nd menu item ), }, { label: ( 3rd menu item ), }, ]} /> ); export default () => ( <>
); ``` ```css #components-dropdown-demo-arrow .ant-btn { margin-right: 8px; margin-bottom: 8px; } .ant-row-rtl #components-dropdown-demo-arrow .ant-btn { margin-right: 0; margin-bottom: 8px; margin-left: 8px; } ```