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