import * as React from 'react'; import { PrimaryButton } from 'office-ui-fabric-react'; 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 ); };