How to use the @artsy/reaction/dist/Assets/Colors.grayRegular function in @artsy/reaction

To help you get started, we’ve selected a few @artsy/reaction examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github artsy / positron / client / components / autocomplete2 / list.jsx View on Github external
)
            })}
          
        }
        

      
    )
  }
}

export const ListItem = styled.div`
  ${Fonts.garamond('s17')}
  align-items: center;
  border: 2px solid ${colors.grayRegular};
  color: ${props => props.color ? props.color : colors.purpleRegular};
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0;
  line-height: 26px;
  margin-bottom: 10px;
  overflow: ellipsis;
  padding: 5px 20px 5px 10px;
  position: relative;
  text-transform: none;
`