UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

27 lines (26 loc) 780 B
/** * @file index.tsx * * @fileoverview Displays a google places API Autocomplete component. */ import React from 'react'; import { GeosuggestProps } from 'react-geosuggest'; export interface GoogleGEOAutocompleteProps extends GeosuggestProps { /** * Input size. * * @default "40" */ size?: number; /** * Elements to display on focus. */ focusElements?: React.ReactNode; /** * Ref for the component. */ refElement?: any; } export declare const StyledFocusElementsWrapp: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const GoogleGEOAutocomplete: ({ size, refElement, focusElements, ...props }: GoogleGEOAutocompleteProps) => JSX.Element; export default GoogleGEOAutocomplete;