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