import * as React from 'react'; import { SpinButton, ISpinButtonStyles, Stack, IStackTokens, IIconProps } from '@fluentui/react'; const stackTokens: IStackTokens = { childrenGap: 20 }; const iconProps: IIconProps = { iconName: 'IncreaseIndentLegacy' }; // By default the field grows to fit available width. Constrain the width instead. const styles: Partial = { spinButtonWrapper: { width: 75 } }; export const SpinButtonIconExample: React.FunctionComponent = () => { return ( ); };