CyberLight/react-typeahead2

View on GitHub
src/components/PresentationInput.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import styled from 'styled-components';

import Input from './Input';

const PresentationInput = styled(Input)`
  color: silver;
  width: inherit;
  -webkit-text-fill-color: silver;
  position: absolute;
  padding: 2px 0;
  border-width: 1px;
  background-color: white;
`;

export default PresentationInput;