How to use the @blueprintjs/core.Alignment.LEFT function in @blueprintjs/core

To help you get started, we’ve selected a few @blueprintjs/core 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 mizchi / next-editor / src / ui / components / pages / Playground.tsx View on Github external
public render() {
    // return (
    //   <button> AppToaster.show({ message: "Toasted" })}
    //     text="show toast"
    //   /&gt;
    // )
    return (
      
        
          NextEditor
          

          }
            position={Position.BOTTOM_LEFT}
            minimal={true}
          &gt;
            </button><button>
          
        
        
          </button><button>
        
      
    )</button>
github dagster-io / dagster / js_modules / dagit / src / PipelinePage.tsx View on Github external
/&gt;
        
      );
    } else {
      body = (
        
      );
    }

    return (
      &lt;&gt;
        
          
             history.push("/")}&gt;
              <img style="{{" src="{navBarImage}">
            
            
            
               {
                  history.push(`/${pipeline.name}/${selectedTab.slug}`);
                }}
              /&gt;
              {selectedPipeline &amp;&amp; }
              {selectedPipeline &amp;&amp; (
                
                  {TABS.map(({ slug, title }) =&gt; (
github jauhararifin / ugrade / desktop / src / scenes / Dashboard / TopNavigationBar / TopNavigationBar.tsx View on Github external
onClick: () =&gt; {
      if (breadcrumbItem.href) push(breadcrumbItem.href)
    },
    href: undefined,
  }))

  const handleSignOut = async () =&gt; {
    await signOut()
    TopToaster.showSuccessToast('Signed Out')
  }
  const handleMyAccount = () =&gt; push('/account')
  const handleSetting = () =&gt; push('/setting')

  return (
    
      
        
          UGrade
        
        
        
      
      
        
              <menuitem>
              <menuitem>
              <menuitem>
            
          }</menuitem></menuitem></menuitem>
github eranimo / terranova / src / interface / views / WorldView.tsx View on Github external
renderControls={() =&gt; [
          
            
            
            World Viewer
          
        ]}
        worldMap={this.state.worldMap}
github source-academy / cadet-frontend / src / components / admin / NavigationBar.tsx View on Github external
const NavigationBar: React.SFC&lt;{}&gt; = () =&gt; (
  
    
      
        
        <div>Announcements</div>
      

      
        
        <div>Assessments</div>
github DSC-SPIDAL / twister2 / dashboard / client / src / components / Dashboard.js View on Github external
render() {
        return (
            <div>
                
                    
                        
                            <div>
                                <div>
                                    <img src="{LOGO}/">
                                </div>
                                <div>
                                    TWISTER2
                                </div>
                            </div>
                        
                        
                        <button>
                    
                    
                        </button></div>
github pymedphys / pymedphys / app / src / components / navbar.tsx View on Github external
render() {
    return (
      
        
          <img alt="Logo" src="{logo}">
          PyMedPhys
          
          <button>
        
        
          
          
        
      
    )</button>
github mizchi / next-editor / src / ui / components / organisms / GlobalHeader.tsx View on Github external
)(function GlobalHeaderImpl(props) {
  return (
    
      
        
          
        
        

        }
          position={Position.BOTTOM_LEFT}
          minimal={true}
          lazy={false}
        &gt;
          <button>
        

        }</button>
github ia-toki / judgels / judgels-frontends / raphael / src / components / forms / FormTableSelect2 / FormTableSelect2.tsx View on Github external
const { onChange, ...inputProps } = this.props.input;

    return (
      
        
          <button data-key="{inputProps.name}">
        
      
    );
  }
</button>
github palantir / blueprint / packages / docs-app / src / examples / core-examples / common / alignmentSelect.tsx View on Github external
public render() {
        const { align, allowCenter = true, label = "Align text" } = this.props;
        return (
            <div>
                {label}
                
                    <button>
                    {allowCenter &amp;&amp; (
                        </button><button align="==">
                    )}
                    </button><button>
                
            </button></div>
        );
    }