import * as React from 'react'; import styled, { StyledComponentClass } from 'styled-components'; import { COLOR_PALETTE } from '../../../constants/colors'; export const Container = styled.div` border: 1px ${COLOR_PALETTE.GREY_D6} solid; border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; box-shadow: 1px 1px 3px 1px ${COLOR_PALETTE.GREY_AB}; font-size: 14px; letter-spacing: 1.2px; max-height: 140px; overflow-x: hidden; position: absolute; width: 100%; z-index: 1000; `; export const List = styled.ul` background-color: ${COLOR_PALETTE.WHITE}; margin: 0; padding: 0; width: 100%; `;