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