import * as _ from 'lodash'; import * as React from 'react'; import { ColorOption } from '../style/theme'; import { Container } from './ui/container'; import { Flex } from './ui/flex'; import { Icon } from './ui/icon'; import { Input, InputProps } from './ui/input'; export interface SearchInputProps extends InputProps { backgroundColor?: ColorOption; } export const SearchInput: React.StatelessComponent = props => ( ); SearchInput.displayName = 'SearchInput'; SearchInput.defaultProps = { backgroundColor: ColorOption.lightestGrey, fontColor: ColorOption.grey, };