import React, { ReactNode, ReactElement } from 'react'; import css from '../../utils/css'; import { ModalFooter as StyledModalFooter } from './StyledModal'; import { CommonProps } from '../common'; export interface ModalFooterProps extends CommonProps { /** * Modal footer content. */ children: ReactNode; } const ModalFooter = ({ children, id, className, style, sx = {}, 'data-test-id': dataTestId, }: ModalFooterProps): ReactElement => ( {children} ); export default ModalFooter;