import React from 'react'; import styled, { css } from 'react-emotion'; import Paper from '@material-ui/core/Paper'; import TextField from '../../muiComponents/TextField'; export interface InputFieldProps { color: string; } export const Wrapper = styled('div')({ '&&': { width: '100%', height: '32px', position: 'relative', zIndex: 1, }, }); /* eslint-disable verdaccio/jsx-spread */ export const InputField: React.FC = ({ color, ...others }) => ( ); export const SuggestionContainer = styled(Paper)({ '&&': { maxHeight: '500px', overflowY: 'auto', }, });