import * as React from 'react'; import { IStackTokens, Stack } from '@fluentui/react/lib/Stack'; import { Dropdown, DropdownMenuItemType, IDropdownStyles, IDropdownOption } from '@fluentui/react/lib/Dropdown'; const dropdownStyles: Partial = { dropdown: { width: 300 }, }; const options: IDropdownOption[] = [ { key: 'fruitsHeader', text: 'Fruits', itemType: DropdownMenuItemType.Header }, { key: 'apple', text: 'Apple' }, { key: 'banana', text: 'Banana' }, { key: 'orange', text: 'Orange', disabled: true }, { key: 'grape', text: 'Grape' }, { key: 'divider_1', text: '-', itemType: DropdownMenuItemType.Divider }, { key: 'vegetablesHeader', text: 'Vegetables', itemType: DropdownMenuItemType.Header }, { key: 'broccoli', text: 'Broccoli' }, { key: 'carrot', text: 'Carrot' }, { key: 'lettuce', text: 'Lettuce' }, ]; const stackTokens: IStackTokens = { childrenGap: 20 }; export const DropdownBasicExample: React.FunctionComponent = () => { return ( ); };