import { Space, Avatar, Input, Button, Badge, Dropdown, Layout, type DropdownProps } from 'antd'; import { UserOutlined, SearchOutlined, BellOutlined, LogoutOutlined } from '@ant-design/icons'; const { Header } = Layout; const userMenuItems: Exclude['items'] = [ { key: 'profile', label: 'Profile' }, { key: 'settings', label: 'Settings' }, { type: 'divider' }, { key: 'logout', label: 'Logout', icon: }, ]; export const LayoutHeader = () => { return (

nxMesh

} style={{ width: '300px' }} />
); };