From c4e994f2dbebc6ec4c8f81505c3901b9930c3131 Mon Sep 17 00:00:00 2001 From: Colin Megill Date: Thu, 19 Apr 2018 00:42:47 -0700 Subject: [PATCH] font awesome icon arrows --- src/components/categorical/categorical.js | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/components/categorical/categorical.js b/src/components/categorical/categorical.js index eba2ddd0..e7a51e2a 100644 --- a/src/components/categorical/categorical.js +++ b/src/components/categorical/categorical.js @@ -8,6 +8,11 @@ import SectionHeader from "../framework/sectionHeader" import Value from "./value"; import { alphabeticallySortedValues } from "./util"; +import FaArrowRight from 'react-icons/lib/fa/angle-right'; +import FaArrowDown from 'react-icons/lib/fa/angle-down'; +import FaPaintBrush from 'react-icons/lib/fa/paint-brush'; + + @connect((state) => { return { colorAccessor: state.controls.colorAccessor @@ -77,11 +82,11 @@ class Category extends React.Component { margin: "3px 10px 3px 0px", }}> { this.setState({isExpanded: !this.state.isExpanded}) }}> - {this.state.isExpanded ? "⯆ " : "⯈ "} + {this.state.isExpanded ? : } {this.props.metadataField} - 🖌️ +