Sha256: 86398ada773d6723e5b11cedc413534ff46ce13463470c1f367b5fe84367cbd8
Contents?: true
Size: 536 Bytes
Versions: 90
Compression:
Stored size: 536 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 dark={props.selectProps.dark} label={props.selectProps.label} > <Flex> <components.Control className="text_input" {...props} /> </Flex> </TextInput> </div> ) export default TypeaheadControl
Version data entries
90 entries across 90 versions & 1 rubygems