How to use the office-ui-fabric-react/lib/Spinner.SpinnerSize.large function in office-ui-fabric-react

To help you get started, we’ve selected a few office-ui-fabric-react examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github OfficeDev / office-ui-fabric-react / packages / dashboard / src / components / DetailPanel / Body / Loading.tsx View on Github external
const _renderSpinner = (overlay: boolean) => {
    const spinner = (
      <div>
        
      </div>
    );
    if (overlay) {
      return (
        
          {spinner}
        
      );
    } else {
      return <div>{spinner}</div>;
    }
  };
github SharePoint / sp-dev-fx-webparts / samples / react-mobx-multiple-stores / src / webparts / mobxTutorial / components / MobxTutorial.tsx View on Github external
public render(): React.ReactElement {
    const { appStore, configStore } = this.props;

    if (appStore.isInitializing)
      return ();

    return (
      <div>
        <div>
          <div>{configStore.applicationTitle}</div>
          
        </div>

        {appStore.status === ApplicationStatus.CreateList ?
          <div>
            <div>1) Create List</div>
            
          </div>
          : null
        }
</div>
github microsoft / BotFramework-Composer / Composer / packages / client / src / components / RequireAuth / index.tsx View on Github external
isBlocking: false,
        styles: { main: { maxWidth: 450 } },
      }}
    &gt;
      <div>{formatMessage('Please log in before continuing.')}</div>
      
         actions.loginUser()} text={formatMessage('Login')} /&gt;
      
    
  );

  if (process.env.COMPOSER_REQUIRE_AUTH) {
    if (!currentUser.sessionExpired &amp;&amp; isLoading) {
      return (
        <div>
          
        </div>
      );
    }
  }

  return (
    
      {sessionExpiredDialog}
      {props.children}
    
  );
};
github SharePoint / sp-dev-fx-webparts / samples / react-events-dynamicdata / src / webparts / events / components / Events.tsx View on Github external
public render(): React.ReactElement {
    const { loading, error, events } = this.state;
    const { displayMode, title, updateProperty } = this.props;

    return (
      <div>
        
        {loading &amp;&amp;
          }
        {!loading &amp;&amp;
          error &amp;&amp;
          <div>The following error occurred while loading events: <span>{error}</span></div>}
        {!loading &amp;&amp;
          !error &amp;&amp;
          events.length === 0 &amp;&amp;
          <div>No events found</div>}
        {!loading &amp;&amp;
          events.length &gt; 0 &amp;&amp;
          </div>
github OfficeDev / script-lab / packages / editor / src / pages / CustomFunctions / components / Summary / index.tsx View on Github external
<div>
              
                More info
              
            </div>
          }
        &gt;
          An error occurred while registering your custom functions.
        
      );
    }

    if (!items) {
      return (
        
          
        
      );
    }

    return (
      <div>
        
          {items.filter(item =&gt; item.status === 'error').length &gt; 0
            ? 'Some of your functions are invalid and cannot be declared. Review and fix the issues.'
            : 'The following functions have been registered successfully.'}
        
        
          {items.map((item, index) =&gt; (
            </div>