import React from 'react'; import { DownOutlined, SettingOutlined } from '@ant-design/icons'; import type { MenuProps } from 'antd'; import { Dropdown, Space } from 'antd'; const items: MenuProps['items'] = [ { key: '1', label: 'My Account', disabled: true, }, { type: 'divider', }, { key: '2', label: 'Profile', extra: '⌘P', }, { key: '3', label: 'Billing', extra: '⌘B', }, { key: '4', label: 'Settings', icon: , extra: '⌘S', }, ]; const App: React.FC = () => ( e.preventDefault()}> Hover me ); export default App;