import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; /** * @ngdoc react * @name Footer * @description Footer Component of a popup */ const Footer: React.StatelessComponent = ({children, className, noBorder, noPadding}) => (
{children}
); Footer.propTypes = { children: PropTypes.node, className: PropTypes.string, noBorder: PropTypes.bool, noPadding: PropTypes.bool, }; export default Footer;