import * as React from 'react'; import { Slider, IStackTokens, Stack, IStackStyles } from '@fluentui/react'; const stackStyles: Partial = { root: { height: 200 } }; const stackTokens: IStackTokens = { childrenGap: 20 }; const valueFormat = (value: number) => `${value}%`; export const SliderVerticalExample: React.FunctionComponent = () => { return ( ); };