import * as React from 'react'; import { CommandBarButton } from '@fluentui/react-next/lib/compat/Button'; import { IOverflowSetItemProps, OverflowSet } from '@fluentui/react-next/lib/OverflowSet'; const noOp = () => undefined; const onRenderItemStyles = { root: { padding: '10px' }, }; const onRenderOverflowButtonStyles = { root: { padding: '10px' }, menuIcon: { fontSize: '16px' }, }; const onRenderItem = (item: IOverflowSetItemProps): JSX.Element => { return ( ); }; // eslint-disable-next-line @typescript-eslint/no-explicit-any const onRenderOverflowButton = (overflowItems: any[] | undefined): JSX.Element => { return ( ); }; export const OverflowSetVerticalExample: React.FunctionComponent = () => ( );