Sha256: 914a88e94b27a1aaf24d42fcfb0f997f2ddd48339887f87494a8ca1feae79de4
Contents?: true
Size: 641 Bytes
Versions: 188
Compression:
Stored size: 641 Bytes
Contents
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} marginBottom="none" > <Flex> <components.Control className="text_input" {...props} /> </Flex> </TextInput> </div> ) export default TypeaheadControl
Version data entries
188 entries across 188 versions & 1 rubygems