import * as React from 'react'; import { Stack, IStackTokens } from '@fluentui/react'; import { CompoundButton } from '@fluentui/react/lib/Button'; export interface IButtonExampleProps { // These are set based on the toggles shown above the examples (not needed in real code) disabled?: boolean; checked?: boolean; } // Example formatting const stackTokens: IStackTokens = { childrenGap: 40 }; export const ButtonCompoundExample: React.FunctionComponent = props => { const { disabled, checked } = props; return ( Standard Primary ); };