UNPKG

311 BJavaScriptView Raw
1import PropTypes from 'prop-types';
2import { createComponent } from 'cf-style-container';
3
4var ModalActions = createComponent(function () {
5 return {
6 float: 'right'
7 };
8});
9ModalActions.setDisplayName('ModalActions');
10
11ModalActions.propTypes = {
12 children: PropTypes.node
13};
14
15export default ModalActions;
\No newline at end of file