Repository URL to install this package:
Version:
0.9.6 ▾
|
import { styled } from 'view-container'
export const StyledSelect = styled.div.attrs({
'className': 'dropdown-parent',
'data-qa': 'qa-dropdown',
}) `
height: rem(44);
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
user-select: none;
padding: 0 rem(16);
margin: 0;
width: 100%;
flex: 1;
flex-direction: row;
/*
* NOTE:
* we can pass the color code for fill by using props
* this is causing when we overwriting the css
*/
/* svg path {
fill: $colors-blackrabbit;
} */
`