import React from 'react' import enhanceWithClickOutside from 'react-click-outside' import ArrowDown from './svg/Arrowdown' import Checkmark from './svg/Checkmark' import { COLORS } from '../lib/constants' class Dropdown extends React.Component { constructor(props) { super(props) this.state = { isVisible: false } this.select = this.select.bind(this) this.toggle = this.toggle.bind(this) } select(item) { if (this.props.selected !== item) { this.props.onChange(item) } } toggle() { this.setState({ isVisible: !this.state.isVisible }) } handleClickOutside() { this.setState({ isVisible: false }) } renderListItems() { return this.props.list.map((item, i) => (