package.src.components.Modal.ModalBoxCloseButton.tsx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react-core Show documentation
Show all versions of react-core Show documentation
This library provides a set of common React components for use with the PatternFly reference implementation.
The newest version!
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';