import * as React from 'react'; import { Spinner } from '@fluentui/react/lib/Spinner'; import { IStackTokens, Stack } from '@fluentui/react/lib/Stack'; import { Label } from '@fluentui/react/lib/Label'; export const SpinnerLabeledExample: React.FunctionComponent = () => { const stackTokens: IStackTokens = { childrenGap: 20, maxWidth: 250, }; return (
); };