Sha256: 770a3ca682577f293f4912f0a12ff118491f9c7d342ba786be30b0625ea488e9
Contents?: true
Size: 586 Bytes
Versions: 154
Compression:
Stored size: 586 Bytes
Contents
/* @flow */ import React from 'react' import { components } from 'react-select' import Flex from '../../pb_flex/_flex' import TextInput from '../../pb_text_input/_text_input' type Props = { selectProps: any, } const TypeaheadControl = (props: Props) => ( <div className="pb_typeahead_wrapper"> <TextInput dark={props.selectProps.dark} label={props.selectProps.label} > <Flex> <components.Control className="text_input" {...props} /> </Flex> </TextInput> </div> ) export default TypeaheadControl
Version data entries
154 entries across 154 versions & 1 rubygems