Autodesk / orion-ui

UI Components that work seamlessly in multiple UI frameworks
https://goo.gl/shxHPB
Other
22 stars 6 forks source link

Integrate TopNav Search #246

Closed recyclerobot closed 7 years ago

recyclerobot commented 7 years ago

As an app developer I can enable searching my app's content so my users can find the content they need

<TopNav>
  <Search placeholder="Search for things" query={this.state.query} onInput={this.applyQuery} onClearIconClick={this.clear} />
</TopNav>
Search.propTypes = {
  query: PropTypes.string,
  placeholder: PropTypes.string,
  onInput: PropTypes.func,
  onClearIconClick: PropTypes.func,
}

Developer notes


TODO