import React from 'react'; import Stop from '../icons/Stop'; export default class Action extends React.Component { render() { let classString = 'action action--' + this.props.slug; return (
{this.props.icon} {this.props.label}
); } }