in src/app/components/chevron-toggle.js [45:63]
render() {
const {label, color} = this.props;
const {expanded} = this.state;
return (
<a
className="aw__toggle"
onClick={this.toggleExpanded}
>
{this.renderChevron(expanded, color || ChevronDownIcon.Color.BLUE)}
{label &&
(
<span className="aw__toggle__text">
{label}
</span>
)
}
</a>
);
}