Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { ClickBoundary } from 'src/bootstrapper/containers/ClickBoundary'
import { CloseIcon } from 'atoms/Icons'
import { Button } from 'atoms/Button'

handleClose = () => {
  this.state.setValue('')
  this.state.handleBlur()
}
renderWhenContent = () => {
  return (
    <ClickBoundary onClickOutside={this.handleClose}>
      <Content>
        {this.renderList()}
        <GoogleLogo key="google-logo" />
        <Button onClick={this.handleClose} icon={<CloseIcon />} />
      </Content>
    </ClickBoundary>
  )
}