import styled from 'styled-components'
const DropDownItemStyled = styled.li`
padding: 10px 0px;
max-height: 40px;
color: #444d57;
font-size: 14px;
text-align: left;
cursor: pointer;
display: flex;
align-items: center;
justify-content: flex-start;
min-width: 182px;
&:hover
{
background-color: #e5edf4 !important;
}
.text {
font-size: 14px;
text-align: left;
color: rgb(68, 77, 87);
margin: 0px 0px 0px 10px;
}
.icon {
height: 24px;
width: 24px !important;
min-width: 24px !important;
padding: 0px !important;
margin: 0 0 0 10px;
}
`
export default DropDownItemStyled
|