@ima/devtools
Version:
IMA.js debugging panel in the Chrome Developer Tools window.
18 lines (14 loc) • 380 B
JSX
import cn from 'clsx';
import PropTypes from 'prop-types';
import styles from './modal.module.less';
export default function ModalFooter({ children, className, ...restProps }) {
return (
<div className={cn(styles.footer, className)} {...restProps}>
{children}
</div>
);
}
ModalFooter.propTypes = {
className: PropTypes.string,
children: PropTypes.any,
};