import * as React from 'react'; import { IconButton, IButtonStyles } from '@fluentui/react-next/lib/compat/Button'; import { Link } from '@fluentui/react-next/lib/Link'; import { IOverflowSetItemProps, OverflowSet } from '@fluentui/react-next/lib/OverflowSet'; const noOp = () => undefined; const onRenderItem = (item: IOverflowSetItemProps): JSX.Element => { return ( {item.name} ); }; // eslint-disable-next-line @typescript-eslint/no-explicit-any const onRenderOverflowButton = (overflowItems: any[] | undefined): JSX.Element => { const buttonStyles: Partial = { root: { minWidth: 0, padding: '0 4px', alignSelf: 'stretch', height: 'auto', }, }; return ( ); }; export const OverflowSetBasicExample: React.FunctionComponent = () => ( );