import * as React from 'react'; import { Menu } from '@fluentui/react-northstar'; import { BookmarkIcon, WordIcon, CalendarIcon } from '@fluentui/react-icons-northstar'; const items = [ { icon: ( ), key: 'editorials', content: 'Editorials', }, { icon: , key: 'review', content: 'Reviews', }, { key: 'events', content: 'Upcoming Events' }, { icon: , key: 'moreevents', content: 'View full calendar with content so long that it wraps', menu: { items: [ { key: '1', content: 'item1', }, { key: '2', content: 'item2', }, { key: '3', content: 'item3', }, ], }, }, ]; const MenuExampleVertical = () => ; export default MenuExampleVertical;