| Current Path : /home/ereika83/www/wp-content/plugins/wp-hummingbird/_src/react/components/sui-box/ |
| Current File : /home/ereika83/www/wp-content/plugins/wp-hummingbird/_src/react/components/sui-box/action.jsx |
/**
* External dependencies
*/
import React from 'react';
/**
* SUI actions component.
* Actions can go either to the sui-box-header or sui-box-footer of Box component.
*/
export default class Action extends React.Component {
render() {
const classes = 'sui-actions-' + this.props.type;
return <div className={ classes }>{ this.props.content }</div>;
}
}