import styled from 'styled-components' import { color, font, space } from '../_utils/branding' import { AutoCompleteList } from './AutoCompleteList' const StyledAutoCompleteList = styled(AutoCompleteList)` & { margin-top: ${space.m}; flex: 1; } & .kirk-item-choice { padding-top: ${space.m}; padding-bottom: ${space.m}; } & .kirk-autoComplete-primaryText { color: ${color.midnightGreen}; font-size: ${font.m.size}; line-height: ${font.m.lineHeight}; } & .kirk-autoComplete-secondaryText { color: ${color.lightMidnightGreen}; font-size: ${font.base.size}; line-height: ${font.base.lineHeight}; margin-top: ${space.s}; } & .kirk-item-choice:hover, & .kirk-item-choice[aria-selected='true'], & .kirk-item-choice.highlight { background-color: ${color.lightGray}; } ` export * from './AutoCompleteList' export { StyledAutoCompleteList as AutoCompleteList }