import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/ModalBox/modal-box'; import { Button } from '../Button'; import TimesIcon from '@patternfly/react-icons/dist/esm/icons/times-icon'; import { OUIAProps } from '../../helpers'; export interface ModalBoxCloseButtonProps extends OUIAProps { /** Additional classes added to the close button. */ className?: string; /** A callback for when the close button is clicked. */ onClose?: (event: KeyboardEvent | React.MouseEvent) => void; /** Accessible descriptor of the close button. */ 'aria-label'?: string; /** Value to set the data-ouia-component-id.*/ ouiaId?: number | string; } export const ModalBoxCloseButton: React.FunctionComponent = ({ className, onClose = () => undefined as any, 'aria-label': ariaLabel = 'Close', ouiaId, ...props }: ModalBoxCloseButtonProps) => (
); ModalBoxCloseButton.displayName = 'ModalBoxCloseButton';