import * as React from 'react'; import { PrimaryButton } 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; } export const ButtonScreenReaderExample: React.FunctionComponent = props => { const { disabled, checked } = props; return ( Button with Aria Description ); };