import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/ModalBox/modal-box'; /** Renders content in the footer of the modal */ export interface ModalFooterProps { /** Content rendered inside the modal footer. */ children?: React.ReactNode; /** Additional classes added to the modal footer. */ className?: string; } export const ModalFooter: React.FunctionComponent = ({ children, className, ...props }: ModalFooterProps) => ( ); ModalFooter.displayName = 'ModalFooter';