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