Files
flood/client/source/scripts/components/action-bar/Action.js
2016-01-10 21:05:12 -08:00

17 lines
391 B
JavaScript

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 (
<div className={classString} onClick={this.props.clickHandler}>
{this.props.icon}
<span className="action__label">{this.props.label}</span>
</div>
);
}
}